Class JceKEMRecipientId
java.lang.Object
org.bouncycastle.cms.RecipientId
org.bouncycastle.cms.PKIXRecipientId
org.bouncycastle.cms.KEMRecipientId
org.bouncycastle.cms.jcajce.JceKEMRecipientId
- All Implemented Interfaces:
Cloneable, org.bouncycastle.util.Selector
-
Field Summary
Fields inherited from class PKIXRecipientId
baseSelector -
Constructor Summary
ConstructorsConstructorDescriptionJceKEMRecipientId(X509Certificate certificate) Construct a recipient id based on the issuer, serial number and subject key identifier (if present) of the passed in certificate.JceKEMRecipientId(X500Principal issuer, BigInteger serialNumber) Construct a recipient id based on the provided issuer and serial number..JceKEMRecipientId(X500Principal issuer, BigInteger serialNumber, byte[] subjectKeyId) Construct a recipient id based on the provided issuer, serial number, and subjectKeyId.. -
Method Summary
Methods inherited from class KEMRecipientId
clone, matchMethods inherited from class PKIXRecipientId
equals, getIssuer, getSerialNumber, getSubjectKeyIdentifier, hashCodeMethods inherited from class RecipientId
getType
-
Constructor Details
-
JceKEMRecipientId
Construct a recipient id based on the issuer, serial number and subject key identifier (if present) of the passed in certificate.- Parameters:
certificate- certificate providing the issue and serial number and subject key identifier.
-
JceKEMRecipientId
Construct a recipient id based on the provided issuer and serial number..- Parameters:
issuer- the issuer to use.serialNumber- the serial number to use.
-
JceKEMRecipientId
Construct a recipient id based on the provided issuer, serial number, and subjectKeyId..- Parameters:
issuer- the issuer to use.serialNumber- the serial number to use.subjectKeyId- the subject key ID to use.
-