Package org.bouncycastle.pkcs
Class PKCS12SecretBag
- java.lang.Object
-
- org.bouncycastle.pkcs.PKCS12SecretBag
-
public class PKCS12SecretBag extends java.lang.ObjectWrapper around the RFC 7292SecretBagASN.1 structure used by the PKCS#12 secretBag bag type.
-
-
Constructor Summary
Constructors Constructor Description PKCS12SecretBag(org.bouncycastle.asn1.pkcs.SecretBag secretBag)Wrap an existing parsed SecretBag ASN.1 structure.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1ObjectIdentifiergetSecretTypeId()Return the OID identifying the type of the secret.org.bouncycastle.asn1.ASN1EncodablegetSecretValue()Return the secret value associated with this bag.org.bouncycastle.asn1.pkcs.SecretBagtoASN1Structure()Return the underlying ASN.1 structure for this secret bag.
-
-
-
Method Detail
-
toASN1Structure
public org.bouncycastle.asn1.pkcs.SecretBag toASN1Structure()
Return the underlying ASN.1 structure for this secret bag.
-
getSecretTypeId
public org.bouncycastle.asn1.ASN1ObjectIdentifier getSecretTypeId()
Return the OID identifying the type of the secret.
-
getSecretValue
public org.bouncycastle.asn1.ASN1Encodable getSecretValue()
Return the secret value associated with this bag.
-
-