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
ConstructorsConstructorDescriptionKEMRecipientInfo(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
Modifier and TypeMethodDescriptionorg.bouncycastle.asn1.ASN1OctetStringstatic KEMRecipientInfoorg.bouncycastle.asn1.x509.AlgorithmIdentifiergetKdf()org.bouncycastle.asn1.x509.AlgorithmIdentifiergetKem()org.bouncycastle.asn1.ASN1OctetStringgetKemct()byte[]getUkm()org.bouncycastle.asn1.x509.AlgorithmIdentifiergetWrap()org.bouncycastle.asn1.ASN1PrimitiveMethods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
Constructor Details
-
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 Details
-
getInstance
-
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:
toASN1Primitivein interfaceorg.bouncycastle.asn1.ASN1Encodable- Specified by:
toASN1Primitivein classorg.bouncycastle.asn1.ASN1Object
-