Package org.bouncycastle.cms.jcajce
Class JceKeyTransRecipientId
java.lang.Object
org.bouncycastle.cms.RecipientId
org.bouncycastle.cms.PKIXRecipientId
org.bouncycastle.cms.KeyTransRecipientId
org.bouncycastle.cms.jcajce.JceKeyTransRecipientId
- All Implemented Interfaces:
Cloneable
,org.bouncycastle.util.Selector
-
Field Summary
Fields inherited from class org.bouncycastle.cms.PKIXRecipientId
baseSelector
-
Constructor Summary
ConstructorDescriptionJceKeyTransRecipientId
(X509Certificate certificate) Construct a recipient id based on the issuer, serial number and subject key identifier (if present) of the passed in certificate.JceKeyTransRecipientId
(X500Principal issuer, BigInteger serialNumber) Construct a recipient id based on the provided issuer and serial number..JceKeyTransRecipientId
(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 org.bouncycastle.cms.KeyTransRecipientId
clone, equals, match
Methods inherited from class org.bouncycastle.cms.PKIXRecipientId
getIssuer, getSerialNumber, getSubjectKeyIdentifier, hashCode
Methods inherited from class org.bouncycastle.cms.RecipientId
getType
-
Constructor Details
-
JceKeyTransRecipientId
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.
-
JceKeyTransRecipientId
Construct a recipient id based on the provided issuer and serial number..- Parameters:
issuer
- the issuer to use.serialNumber
- the serial number to use.
-
JceKeyTransRecipientId
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.
-