mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
243321b4bb
This is based on f56a3b1846c7d462542f2e9527f4d0ed8a34748d in my heimdal-wip repo. metze (This used to be commit 467a1f2163a63cdf1a4c83a69473db50e8794f53)
31 lines
630 B
Groff
31 lines
630 B
Groff
-- $Id$ --
|
|
|
|
PKCS8 DEFINITIONS ::=
|
|
|
|
BEGIN
|
|
|
|
IMPORTS Attribute, AlgorithmIdentifier FROM rfc2459
|
|
heim_any, heim_any_set FROM heim;
|
|
|
|
PKCS8PrivateKeyAlgorithmIdentifier ::= AlgorithmIdentifier
|
|
|
|
PKCS8PrivateKey ::= OCTET STRING
|
|
|
|
PKCS8Attributes ::= SET OF Attribute
|
|
|
|
PKCS8PrivateKeyInfo ::= SEQUENCE {
|
|
version INTEGER,
|
|
privateKeyAlgorithm PKCS8PrivateKeyAlgorithmIdentifier,
|
|
privateKey PKCS8PrivateKey,
|
|
attributes [0] IMPLICIT SET OF Attribute OPTIONAL
|
|
}
|
|
|
|
PKCS8EncryptedData ::= OCTET STRING
|
|
|
|
PKCS8EncryptedPrivateKeyInfo ::= SEQUENCE {
|
|
encryptionAlgorithm AlgorithmIdentifier,
|
|
encryptedData PKCS8EncryptedData
|
|
}
|
|
|
|
END
|