Package org.bouncycastle.asn1.cms
Class KEMRecipientInfo
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.cms.KEMRecipientInfo
-
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class KEMRecipientInfo extends org.bouncycastle.asn1.ASN1Object
KEMRecipientInfo ::= SEQUENCE { version CMSVersion, -- always set to 0 rid RecipientIdentifier, kem KEMAlgorithmIdentifier, kemct OCTET STRING, kdf KeyDerivationAlgorithmIdentifier, kekLength INTEGER (1..MAX), ukm [0] EXPLICIT UserKeyingMaterial OPTIONAL, wrap KeyEncryptionAlgorithmIdentifier, encryptedKey EncryptedKey }
-
-
Constructor Summary
Constructors Constructor Description KEMRecipientInfo(RecipientIdentifier rid, org.bouncycastle.asn1.x509.AlgorithmIdentifier kem, org.bouncycastle.asn1.ASN1OctetString kemct, org.bouncycastle.asn1.x509.AlgorithmIdentifier kdf, org.bouncycastle.asn1.ASN1Integer kekLength, org.bouncycastle.asn1.ASN1OctetString ukm, org.bouncycastle.asn1.x509.AlgorithmIdentifier wrap, org.bouncycastle.asn1.ASN1OctetString encryptedKey)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1OctetString
getEncryptedKey()
static KEMRecipientInfo
getInstance(java.lang.Object o)
org.bouncycastle.asn1.x509.AlgorithmIdentifier
getKdf()
org.bouncycastle.asn1.x509.AlgorithmIdentifier
getKem()
org.bouncycastle.asn1.ASN1OctetString
getKemct()
RecipientIdentifier
getRecipientIdentifier()
byte[]
getUkm()
org.bouncycastle.asn1.x509.AlgorithmIdentifier
getWrap()
org.bouncycastle.asn1.ASN1Primitive
toASN1Primitive()
-
-
-
Constructor Detail
-
KEMRecipientInfo
public KEMRecipientInfo(RecipientIdentifier rid, org.bouncycastle.asn1.x509.AlgorithmIdentifier kem, org.bouncycastle.asn1.ASN1OctetString kemct, org.bouncycastle.asn1.x509.AlgorithmIdentifier kdf, org.bouncycastle.asn1.ASN1Integer kekLength, org.bouncycastle.asn1.ASN1OctetString ukm, org.bouncycastle.asn1.x509.AlgorithmIdentifier wrap, org.bouncycastle.asn1.ASN1OctetString encryptedKey)
-
-
Method Detail
-
getInstance
public static KEMRecipientInfo getInstance(java.lang.Object o)
-
getRecipientIdentifier
public RecipientIdentifier getRecipientIdentifier()
-
getKem
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getKem()
-
getKemct
public org.bouncycastle.asn1.ASN1OctetString getKemct()
-
getKdf
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getKdf()
-
getWrap
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getWrap()
-
getUkm
public byte[] getUkm()
-
getEncryptedKey
public org.bouncycastle.asn1.ASN1OctetString getEncryptedKey()
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
- Specified by:
toASN1Primitive
in interfaceorg.bouncycastle.asn1.ASN1Encodable
- Specified by:
toASN1Primitive
in classorg.bouncycastle.asn1.ASN1Object
-
-