Class CertAndKeyGen
- java.lang.Object
-
- netscape.security.x509.CertAndKeyGen
-
public final class CertAndKeyGen extends java.lang.Object
Generate a pair of keys, and provide access to them. This class is provided primarily for ease of use.This provides some simple certificate management functionality. Specifically, it allows you to create self-signed X.509 certificates as well as PKCS 10 based certificate signing requests.
Keys for some public key signature algorithms have algorithm parameters, such as DSS/DSA. Some sites' Certificate Authorities adopt fixed algorithm parameters, which speeds up some operations including key generation and signing. At this time, this interface does not provide a way to provide such algorithm parameters, e.g. by providing the CA certificate which includes those parameters.
Also, note that at this time only signature-capable keys may be acquired through this interface. Diffie-Hellman keys, used for secure key exchange, may be supported later.
- Version:
- 1.44
- Author:
- David Brownell, Hemma Prafullchandra
- See Also:
PKCS10
,X509CertImpl
-
-
Constructor Summary
Constructors Constructor Description CertAndKeyGen(java.lang.String keyType, java.lang.String sigAlg)
Creates a CertAndKeyGen object for a particular key type and signature algorithm.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
generate(int keyBits)
Generates a random public/private key pair, with a given key size.PKCS10
getCertRequest(X500Name myname)
Returns a PKCS #10 certificate request.java.security.PrivateKey
getPrivateKey()
Returns the private key of the generated key pair.X509Key
getPublicKey()
Returns the public key of the generated key pair.X509Cert
getSelfCert(X500Name myname, long validity)
java.security.cert.X509Certificate
getSelfCertificate(X500Name myname, long validity)
Returns a self-signed X.509v3 certificate for the public key.void
setRandom(java.security.SecureRandom generator)
Deprecated.All random numbers come from PKCS #11 now.
-
-
-
Constructor Detail
-
CertAndKeyGen
public CertAndKeyGen(java.lang.String keyType, java.lang.String sigAlg) throws java.security.NoSuchAlgorithmException
Creates a CertAndKeyGen object for a particular key type and signature algorithm.- Parameters:
keyType
- type of key, e.g. "RSA", "DSA"sigAlg
- name of the signature algorithm, e.g. "MD5WithRSA", "MD2WithRSA", "SHAwithDSA".- Throws:
java.security.NoSuchAlgorithmException
- on unrecognized algorithms.
-
-
Method Detail
-
setRandom
public void setRandom(java.security.SecureRandom generator)
Deprecated.All random numbers come from PKCS #11 now.Sets the source of random numbers used when generating keys. If you do not provide one, a system default facility is used. You may wish to provide your own source of random numbers to get a reproducible sequence of keys and signatures, or because you may be able to take advantage of strong sources of randomness/entropy in your environment.
-
generate
public void generate(int keyBits) throws java.security.InvalidKeyException
Generates a random public/private key pair, with a given key size. Different algorithms provide different degrees of security for the same key size, because of the "work factor" involved in brute force attacks. As computers become faster, it becomes easier to perform such attacks. Small keys are to be avoided.Note that not all values of "keyBits" are valid for all algorithms, and not all public key algorithms are currently supported for use in X.509 certificates. If the algorithm you specified does not produce X.509 compatible keys, an invalid key exception is thrown.
- Parameters:
keyBits
- the number of bits in the keys.- Throws:
java.security.InvalidKeyException
- if the environment does not provide X.509 public keys for this signature algorithm.
-
getPublicKey
public X509Key getPublicKey()
Returns the public key of the generated key pair.
-
getPrivateKey
public java.security.PrivateKey getPrivateKey()
Returns the private key of the generated key pair.Be extremely careful when handling private keys. When private keys are not kept secret, they lose their ability to securely authenticate specific entities ... that is a huge security risk!
-
getSelfCert
public X509Cert getSelfCert(X500Name myname, long validity) throws java.security.InvalidKeyException, java.security.SignatureException, java.security.NoSuchAlgorithmException
Returns a self-signed X.509v1 certificate for the public key. The certificate is immediately valid.Such certificates normally are used to identify a "Certificate Authority" (CA). Accordingly, they will not always be accepted by other parties. However, such certificates are also useful when you are bootstrapping your security infrastructure, or deploying system prototypes.
- Parameters:
myname
- X.500 name of the subject (who is also the issuer)validity
- how long the certificate should be valid, in seconds- Throws:
java.security.InvalidKeyException
java.security.SignatureException
java.security.NoSuchAlgorithmException
-
getSelfCertificate
public java.security.cert.X509Certificate getSelfCertificate(X500Name myname, long validity) throws java.security.cert.CertificateException, java.security.InvalidKeyException, java.security.SignatureException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException
Returns a self-signed X.509v3 certificate for the public key. The certificate is immediately valid. No extensions.Such certificates normally are used to identify a "Certificate Authority" (CA). Accordingly, they will not always be accepted by other parties. However, such certificates are also useful when you are bootstrapping your security infrastructure, or deploying system prototypes.
- Parameters:
myname
- X.500 name of the subject (who is also the issuer)validity
- how long the certificate should be valid, in seconds- Throws:
java.security.cert.CertificateException
- on certificate handling errors.java.security.InvalidKeyException
- on key handling errors.java.security.SignatureException
- on signature handling errors.java.security.NoSuchAlgorithmException
- on unrecognized algorithms.java.security.NoSuchProviderException
- on unrecognized providers.
-
getCertRequest
public PKCS10 getCertRequest(X500Name myname) throws java.security.InvalidKeyException, java.security.SignatureException
Returns a PKCS #10 certificate request. The caller uses eitherPKCS10.print
orPKCS10.toByteArray
operations on the result, to get the request in an appropriate transmission format.PKCS #10 certificate requests are sent, along with some proof of identity, to Certificate Authorities (CAs) which then issue X.509 public key certificates.
- Parameters:
myname
- X.500 name of the subject- Throws:
java.security.InvalidKeyException
- on key handling errors.java.security.SignatureException
- on signature handling errors.
-
-