The Java Certification Path defines a set of classes and interfaces to create, build and validate digital certification paths. A digital certificate is a data structure of the binding between a subject and a public key signed by a Certification Authority (CA). In practice, CA's may have their own certificates issued by a higher-level authority. To verify the binding, a valid chain of certificates must be found from end entity certificates up to a CA that is recognized and trusted. The process of validating certificate chains is an important part of PKI-enabled systems.
IBM provides the Java Certification Path as standard extension to the Java SDK 1.3 platform. Under the interfaces is IBM's implementation of X.509 certification path processing that is fully compliant with the 8th version of the Internet draft for PKI Certificate and CRL Profile.
To download a copy of the documentation for the Java Certification Path (CertPath) for OS/390, download the
certpathdocs.jar
The
certpathdocs.jar files contain the following documents:
To extract the documentation from the downloaded .jar file, place the .jar file at the directory location where you would like the documentation (for instance the
${java-home}/docs/certpathDocs) and issue the following command:
jar -xvf certpathdocs.jar
Note that the
certpathdocs.jar file is actually a Java Archive (.jar) file that contains documentation only and no executable code. The
jar command above will work whether the file type is .tar or .jar.
The
certpath.jar file is pre-installed in the
${java-home}/lib/ext directory.
The following information shows how to use Certification Path:
The sample programs that demonstrate how to use Certification Path are located in the
${java-home}/demo/certpath/src directory.
|