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

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

Uses of PKIException in com.dstc.security.pki
 

Subclasses of PKIException in com.dstc.security.pki
 interface X509CertGenException
          A class for X509CertGen exceptions.
 interface X509CRLGenException
          A class for X509CRLGen exceptions.
 

Methods in com.dstc.security.pki that throw PKIException
static byte[] CertUtil.toPEMEncoding(X509Certificate cert)
           Returns the PEM encoding of an X.509 certificate.
static byte[] CertUtil.toPEMEncoding(PKCS10CertificationRequest req)
           Returns the PEM encoding of a PKCS10CertificationRequest.
static byte[] CertUtil.encode(X509Certificate[] certs)
           Returns the raw DER encoding of an array of X509Certificate objects in pkcs#7 format.
static byte[] CertUtil.encode(X509CRL[] crls)
           Returns the raw DER encoding of an array of X509CRL objects in pkcs#7 format.
static byte[] CertUtil.toPEMEncoding(X509Certificate[] certs)
           Returns the PEM encoding of an array of X509Certificate objects in pkcs#7 format.
static byte[] CertUtil.toPEMEncoding(X509CRL[] crls)
           Returns the PEM encoding of an array of X509CRL objects in pkcs#7 format.
 

Constructors in com.dstc.security.pki that throw PKIException
NetscapeCertificationRequest.NetscapeCertificationRequest(byte[] encoded)
          Constructs a NetscapeCertificationRequest from a DER encoding of a netscape certification request
NetscapeCertificationRequest.NetscapeCertificationRequest(InputStream is)
          Constructs a NetscapeCertificationRequest from a DER encoding of a netscape certification request
PKCS10CertificationRequest.PKCS10CertificationRequest(String dn, PublicKey pub, Set atts, String sigAlgName, PrivateKey priv)
           Constructs PKCS10CertificationRequest from the subject's DN, a set of Attributes, the signature algorithm name and subject's private key.
PKCS10CertificationRequest.PKCS10CertificationRequest(byte[] encoded)
          Constructs a PKCS10CertificationRequest object from a byte array containing an encoding of a pkcs10 request.
PKCS10CertificationRequest.PKCS10CertificationRequest(InputStream is)
          Constructs a PKCS10CertificationRequest object from an InputStream containing an encoding of a pkcs10 request.