/usr/lib/python3/dist-packages/pyasn1_modules
NameSizeModeActions
__pycache__/-0755rm
pem.py20520644editdlrm
rfc1155.py26770644editdlrm
rfc1157.py35480644editdlrm
rfc1901.py6400644editdlrm
rfc1902.py36990644editdlrm
rfc1905.py48310644editdlrm
rfc2251.py269250644editdlrm
rfc2314.py13070644editdlrm
rfc2315.py96430644editdlrm
rfc2437.py26170644editdlrm
rfc2459.py500130644editdlrm
rfc2511.py103620644editdlrm
rfc2560.py84000644editdlrm
rfc3279.py59660644editdlrm
rfc3280.py466620644editdlrm
rfc3281.py98600644editdlrm
rfc3412.py19500644editdlrm
rfc3414.py11610644editdlrm
rfc3447.py16050644editdlrm
rfc3852.py201130644editdlrm
rfc4210.py283770644editdlrm
rfc4211.py121100644editdlrm
rfc5208.py14260644editdlrm
rfc5280.py494990644editdlrm
rfc5652.py201130644editdlrm
rfc6402.py150190644editdlrm
__init__.py650644editdlrm
Edit: /usr/lib/python3/dist-packages/pyasn1_modules/rfc5208.py (1426B)
# # This file is part of pyasn1-modules software. # # Copyright (c) 2005-2017, Ilya Etingof # License: http://pyasn1.sf.net/license.html # # PKCS#8 syntax # # ASN.1 source from: # http://tools.ietf.org/html/rfc5208 # # Sample captures could be obtained with "openssl pkcs8 -topk8" command # from pyasn1_modules import rfc2251 from pyasn1_modules.rfc2459 import * class KeyEncryptionAlgorithms(AlgorithmIdentifier): pass class PrivateKeyAlgorithms(AlgorithmIdentifier): pass class EncryptedData(univ.OctetString): pass class EncryptedPrivateKeyInfo(univ.Sequence): componentType = namedtype.NamedTypes( namedtype.NamedType('encryptionAlgorithm', AlgorithmIdentifier()), namedtype.NamedType('encryptedData', EncryptedData()) ) class PrivateKey(univ.OctetString): pass class Attributes(univ.SetOf): componentType = rfc2251.Attribute() class Version(univ.Integer): namedValues = namedval.NamedValues(('v1', 0), ('v2', 1)) class PrivateKeyInfo(univ.Sequence): componentType = namedtype.NamedTypes( namedtype.NamedType('version', Version()), namedtype.NamedType('privateKeyAlgorithm', AlgorithmIdentifier()), namedtype.NamedType('privateKey', PrivateKey()), namedtype.OptionalNamedType('attributes', Attributes().subtype( implicitTag=tag.Tag(tag.tagClassContext, tag.tagFormatConstructed, 0))) )