org.bouncycastle.asn1.pkcs
Class EncryptedPrivateKeyInfo
java.lang.Object
  
org.bouncycastle.asn1.ASN1Encodable
      
org.bouncycastle.asn1.pkcs.EncryptedPrivateKeyInfo
- All Implemented Interfaces: 
 - DEREncodable
 
- public class EncryptedPrivateKeyInfo
- extends ASN1Encodable
  
 
 
 
 
 
| Methods inherited from class java.lang.Object | 
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait | 
 
EncryptedPrivateKeyInfo
public EncryptedPrivateKeyInfo(ASN1Sequence seq)
EncryptedPrivateKeyInfo
public EncryptedPrivateKeyInfo(AlgorithmIdentifier algId,
                               byte[] encoding)
getInstance
public static EncryptedPrivateKeyInfo getInstance(java.lang.Object obj)
 
getEncryptionAlgorithm
public AlgorithmIdentifier getEncryptionAlgorithm()
 
getEncryptedData
public byte[] getEncryptedData()
 
toASN1Object
public DERObject toASN1Object()
- Produce an object suitable for an ASN1OutputStream.
 
 EncryptedPrivateKeyInfo ::= SEQUENCE {
      encryptionAlgorithm AlgorithmIdentifier {{KeyEncryptionAlgorithms}},
      encryptedData EncryptedData
 }
 EncryptedData ::= OCTET STRING
 KeyEncryptionAlgorithms ALGORITHM-IDENTIFIER ::= {
          ... -- For local profiles
 }
 
- Specified by:
 toASN1Object in class ASN1Encodable