Uses of Class
com.dstc.security.pki.X509CertGenException

Packages that use X509CertGenException
com.dstc.security.pki This package defines classes and interfaces for certification requests and certificate and CRL generation. 
 

Uses of X509CertGenException in com.dstc.security.pki
 

Methods in com.dstc.security.pki that throw X509CertGenException
 void X509CertGen.setKeyUsage(boolean[] usage)
           Set the Key Usage extension of this certificate.
 void X509CertGen.setSubjectKeyIdentifier(byte[] keyId)
           Set the subject's SubjectKeyIdentifier extension for this certificate.
 void X509CertGen.setAuthorityKeyIdentifier(byte[] keyId)
           Set the issuer's AuthorityKeyIdentifier extension for this certificate.
 void X509CertGen.processPKCS10(byte[] reqEncoding)
           Process a PKCS10 Certification Request.
 X509Certificate X509CertGen.getCertificate()
           Returns the X.509 certificate being generated by this X509CertGen object.
 byte[] X509CertGen.getEncoded(int mode)
           Returns the DER encoding of the certificate generated by this X509CertGen object.
 void X509CertGen.reset()
           Resets X509CertGen object so that a new User Certificate can be generated.
 

Constructors in com.dstc.security.pki that throw X509CertGenException
X509CertGen.X509CertGen(PrivateKey key, String alg, X509Certificate cert)
           Constructs X509CertGen from the signer's private key, the signature algorithm and signer's certificate
X509CertGen.X509CertGen(PrivateKey key, String alg, String provider, X509Certificate cert)
           Constructs X509CertGen from the signer's private key, the signature algorithm, the provider for the Signature object to be used and the signer's certificate.