(kt)
| 793 | # Some Utility Functions |
| 794 | ############################################################################## |
| 795 | def keyTypeToString(kt): |
| 796 | global keytypes |
| 797 | if kt in keytypes: |
| 798 | return keytypes[kt] |
| 799 | else: |
| 800 | try: |
| 801 | return "UNKNOWN(%s)" % str(kt) |
| 802 | except: |
| 803 | return "UNKNOWN(%s)" % repr(kt) |
| 804 | |
| 805 | |
| 806 | def parse_x509_dtm(dtm): |
no outgoing calls
no test coverage detected