|
Bouncy Castle Cryptography Library 1.77.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.bouncycastle.x509.X509V3CertificateGenerator
class to produce an X.509 Version 3 certificate.
Constructor Summary | |
X509V3CertificateGenerator()
Deprecated. |
Method Summary | |
void |
addExtension(ASN1ObjectIdentifier oid,
boolean critical,
ASN1Encodable value)
Deprecated. add a given extension field for the standard extensions tag (tag 3) |
void |
addExtension(ASN1ObjectIdentifier oid,
boolean critical,
byte[] value)
Deprecated. add a given extension field for the standard extensions tag (tag 3) |
void |
addExtension(java.lang.String oid,
boolean critical,
ASN1Encodable value)
Deprecated. add a given extension field for the standard extensions tag (tag 3) |
void |
addExtension(java.lang.String oid,
boolean critical,
byte[] value)
Deprecated. add a given extension field for the standard extensions tag (tag 3) The value parameter becomes the contents of the octet string associated with the extension. |
void |
copyAndAddExtension(ASN1ObjectIdentifier oid,
boolean critical,
java.security.cert.X509Certificate cert)
Deprecated. add a given extension field for the standard extensions tag (tag 3) copying the extension value from another certificate. |
void |
copyAndAddExtension(java.lang.String oid,
boolean critical,
java.security.cert.X509Certificate cert)
Deprecated. add a given extension field for the standard extensions tag (tag 3) copying the extension value from another certificate. |
java.security.cert.X509Certificate |
generate(java.security.PrivateKey key)
Deprecated. generate an X509 certificate, based on the current issuer and subject using the default provider. |
java.security.cert.X509Certificate |
generate(java.security.PrivateKey key,
java.security.SecureRandom random)
Deprecated. generate an X509 certificate, based on the current issuer and subject using the default provider, and the passed in source of randomness (if required). |
java.security.cert.X509Certificate |
generate(java.security.PrivateKey key,
java.lang.String provider)
Deprecated. generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing. |
java.security.cert.X509Certificate |
generate(java.security.PrivateKey key,
java.lang.String provider,
java.security.SecureRandom random)
Deprecated. generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing and the supplied source of randomness, if required. |
java.security.cert.X509Certificate |
generateX509Certificate(java.security.PrivateKey key)
Deprecated. use generate(key, "BC") |
java.security.cert.X509Certificate |
generateX509Certificate(java.security.PrivateKey key,
java.security.SecureRandom random)
Deprecated. use generate(key, random, "BC") |
java.security.cert.X509Certificate |
generateX509Certificate(java.security.PrivateKey key,
java.lang.String provider)
Deprecated. use generate() |
java.security.cert.X509Certificate |
generateX509Certificate(java.security.PrivateKey key,
java.lang.String provider,
java.security.SecureRandom random)
Deprecated. use generate() |
java.util.Iterator |
getSignatureAlgNames()
Deprecated. Return an iterator of the signature names supported by the generator. |
void |
reset()
Deprecated. reset the generator |
void |
setIssuerDN(X509Name issuer)
Deprecated. Set the issuer distinguished name - the issuer is the entity whose private key is used to sign the certificate. |
void |
setIssuerUniqueID(boolean[] uniqueID)
Deprecated. Set the issuer unique ID - note: it is very rare that it is correct to do this. |
void |
setNotAfter(java.util.Date date)
Deprecated. |
void |
setNotBefore(java.util.Date date)
Deprecated. |
void |
setPublicKey(java.security.PublicKey key)
Deprecated. |
void |
setSerialNumber(java.math.BigInteger serialNumber)
Deprecated. set the serial number for the certificate. |
void |
setSignatureAlgorithm(java.lang.String signatureAlgorithm)
Deprecated. Set the signature algorithm. |
void |
setSubjectDN(X509Name subject)
Deprecated. Set the subject distinguished name. |
void |
setSubjectUniqueID(boolean[] uniqueID)
Deprecated. Set the subject unique ID - note: it is very rare that it is correct to do this. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public X509V3CertificateGenerator()
Method Detail |
public void reset()
public void setSerialNumber(java.math.BigInteger serialNumber)
public void setIssuerDN(X509Name issuer)
public void setNotBefore(java.util.Date date)
public void setNotAfter(java.util.Date date)
public void setSubjectDN(X509Name subject)
public void setPublicKey(java.security.PublicKey key) throws java.lang.IllegalArgumentException
public void setSignatureAlgorithm(java.lang.String signatureAlgorithm)
signatureAlgorithm
- string representation of the algorithm name.public void setSubjectUniqueID(boolean[] uniqueID)
public void setIssuerUniqueID(boolean[] uniqueID)
public void addExtension(java.lang.String oid, boolean critical, ASN1Encodable value)
public void addExtension(ASN1ObjectIdentifier oid, boolean critical, ASN1Encodable value)
public void addExtension(java.lang.String oid, boolean critical, byte[] value)
public void addExtension(ASN1ObjectIdentifier oid, boolean critical, byte[] value)
public void copyAndAddExtension(java.lang.String oid, boolean critical, java.security.cert.X509Certificate cert) throws java.security.cert.CertificateParsingException
java.security.cert.CertificateParsingException
- if the extension cannot be extracted.public void copyAndAddExtension(ASN1ObjectIdentifier oid, boolean critical, java.security.cert.X509Certificate cert) throws java.security.cert.CertificateParsingException
java.security.cert.CertificateParsingException
- if the extension cannot be extracted.public java.security.cert.X509Certificate generateX509Certificate(java.security.PrivateKey key) throws java.lang.SecurityException, java.security.SignatureException, java.security.InvalidKeyException
public java.security.cert.X509Certificate generateX509Certificate(java.security.PrivateKey key, java.security.SecureRandom random) throws java.lang.SecurityException, java.security.SignatureException, java.security.InvalidKeyException
public java.security.cert.X509Certificate generateX509Certificate(java.security.PrivateKey key, java.lang.String provider) throws java.security.NoSuchProviderException, java.lang.SecurityException, java.security.SignatureException, java.security.InvalidKeyException
public java.security.cert.X509Certificate generateX509Certificate(java.security.PrivateKey key, java.lang.String provider, java.security.SecureRandom random) throws java.security.NoSuchProviderException, java.lang.SecurityException, java.security.SignatureException, java.security.InvalidKeyException
public java.security.cert.X509Certificate generate(java.security.PrivateKey key) throws java.security.cert.CertificateEncodingException, java.lang.IllegalStateException, java.security.NoSuchAlgorithmException, java.security.SignatureException, java.security.InvalidKeyException
Note: this differs from the deprecated method in that the default provider is used - not "BC".
public java.security.cert.X509Certificate generate(java.security.PrivateKey key, java.security.SecureRandom random) throws java.security.cert.CertificateEncodingException, java.lang.IllegalStateException, java.security.NoSuchAlgorithmException, java.security.SignatureException, java.security.InvalidKeyException
Note: this differs from the deprecated method in that the default provider is used - not "BC".
public java.security.cert.X509Certificate generate(java.security.PrivateKey key, java.lang.String provider) throws java.security.cert.CertificateEncodingException, java.lang.IllegalStateException, java.security.NoSuchProviderException, java.security.NoSuchAlgorithmException, java.security.SignatureException, java.security.InvalidKeyException
public java.security.cert.X509Certificate generate(java.security.PrivateKey key, java.lang.String provider, java.security.SecureRandom random) throws java.security.cert.CertificateEncodingException, java.lang.IllegalStateException, java.security.NoSuchProviderException, java.security.NoSuchAlgorithmException, java.security.SignatureException, java.security.InvalidKeyException
public java.util.Iterator getSignatureAlgNames()
|
Bouncy Castle Cryptography Library 1.77.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |