View Javadoc
1 package jsdsi; 2 3 import java.security.InvalidAlgorithmParameterException; 4 5 /*** 6 * Specifies that the cert path builder should search for a cert path 7 * from subject to issuer. Essentially, tells the builder to use 8 * <code>RProver</code>. 9 * 10 * @see RProver 11 * 12 * @author Sameer Ajmani 13 * @version $Revision: 1.1.6.1 $ $Date: 2005/11/08 03:12:52 $ 14 */ 15 public class SubjectCertPathParameters extends jsdsi.CertPathParameters { 16 /*** 17 * @see jsdsi.CertPathParameters#CertPathParameters(Cert, java.security.cert.CertStore) 18 */ 19 public SubjectCertPathParameters(Cert c, java.security.cert.CertStore s) 20 throws InvalidAlgorithmParameterException { 21 super(c, s); 22 } 23 }

This page was automatically generated by Maven