Overview of Universal Types in asn1crypto
masterThe asn1crypto.core module provides universal type classes that implement BER/DER decoding and DER encoding. These classes allow you to parse, represent, and serialize all standard ASN.1 universal types.
Common mappings between ASN.1 classes and Python native types include:
Boolean->boolInteger->intOctetString->bytesNull->NoneObjectIdentifier->str(dotted integer format)Sequence->OrderedDictSequenceOf->listSet->OrderedDictSetOf->listUTCTime/GeneralizedTime->datetime.datetime