Package org.bouncycastle.cms.jcajce
Class JcaSignerId
- java.lang.Object
-
- org.bouncycastle.cms.SignerId
-
- org.bouncycastle.cms.jcajce.JcaSignerId
-
-
Constructor Summary
Constructors Constructor Description JcaSignerId(X509Certificate certificate)
Construct a signer identifier based on the issuer, serial number and subject key identifier (if present) of the passed in certificate.JcaSignerId(X500Principal issuer, BigInteger serialNumber)
Construct a signer identifier based on the provided issuer and serial number..JcaSignerId(X500Principal issuer, BigInteger serialNumber, byte[] subjectKeyId)
Construct a signer identifier based on the provided issuer, serial number, and subjectKeyId..
-
-
-
Constructor Detail
-
JcaSignerId
public JcaSignerId(X509Certificate certificate)
Construct a signer identifier 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.
-
JcaSignerId
public JcaSignerId(X500Principal issuer, BigInteger serialNumber)
Construct a signer identifier based on the provided issuer and serial number..- Parameters:
issuer
- the issuer to use.serialNumber
- the serial number to use.
-
JcaSignerId
public JcaSignerId(X500Principal issuer, BigInteger serialNumber, byte[] subjectKeyId)
Construct a signer identifier 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.
-
-