| This class represents the ASN.1 encoding of a private key,
encoded according to the ASN.1 type PrivateKeyInfo .
The PrivateKeyInfo syntax is defined in the PKCS#8 standard
as follows:
PrivateKeyInfo ::= SEQUENCE {
version Version,
privateKeyAlgorithm PrivateKeyAlgorithmIdentifier,
privateKey PrivateKey,
attributes [0] IMPLICIT Attributes OPTIONAL }
Version ::= INTEGER
PrivateKeyAlgorithmIdentifier ::= AlgorithmIdentifier
PrivateKey ::= OCTET STRING
Attributes ::= SET OF Attribute
author: Jan Luehe version: 1.14, 02/02/00 See Also: java.security.Key See Also: java.security.KeyFactory See Also: KeySpec See Also: EncodedKeySpec See Also: X509EncodedKeySpec since: 1.2 |