ASN1 structure for recording RSA PrivateKeyAlgorithm identifiers.
| 10 | |
| 11 | |
| 12 | class RsaAlgorithmIdentifier(univ.Sequence): |
| 13 | """ASN1 structure for recording RSA PrivateKeyAlgorithm identifiers.""" |
| 14 | |
| 15 | componentType = namedtype.NamedTypes( |
| 16 | namedtype.NamedType("rsaEncryption", univ.ObjectIdentifier()), namedtype.NamedType("parameters", univ.Null()) |
| 17 | ) |
| 18 | |
| 19 | |
| 20 | class PKCS8PrivateKey(univ.Sequence): |
no outgoing calls
no test coverage detected
searching dependent graphs…