public class JcaX509v1CertificateBuilder extends X509v1CertificateBuilder
| Constructor and Description |
|---|
JcaX509v1CertificateBuilder(X500Name issuer,
BigInteger serial,
Date notBefore,
Date notAfter,
X500Name subject,
PublicKey publicKey)
Initialise the builder using a PublicKey.
|
JcaX509v1CertificateBuilder(X500Principal issuer,
BigInteger serial,
Date notBefore,
Date notAfter,
X500Principal subject,
PublicKey publicKey)
Initialise the builder using X500Principal objects and a PublicKey.
|
public JcaX509v1CertificateBuilder(X500Name issuer, BigInteger serial, Date notBefore, Date notAfter, X500Name subject, PublicKey publicKey)
issuer - X500Name representing the issuer of this certificate.serial - the serial number for the certificate.notBefore - date before which the certificate is not valid.notAfter - date after which the certificate is not valid.subject - X500Name representing the subject of this certificate.publicKey - the public key to be associated with the certificate.public JcaX509v1CertificateBuilder(X500Principal issuer, BigInteger serial, Date notBefore, Date notAfter, X500Principal subject, PublicKey publicKey)
issuer - principal representing the issuer of this certificate.serial - the serial number for the certificate.notBefore - date before which the certificate is not valid.notAfter - date after which the certificate is not valid.subject - principal representing the subject of this certificate.publicKey - the public key to be associated with the certificate.Copyright © 2015. All rights reserved.