1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
/* ValidSelfIssuedpathLenConstraintTest15.java
Copyright (C) 2003 Free Software Foundation, Inc.
Distributed under the GPL. See the file `COPYING' */
// Tags: JDK1.4
// Uses: BaseValidTest
// Files: data/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt data/certs/pathLenConstraint0SelfIssuedCACert.crt data/certs/pathLenConstraint0CACert.crt data/crls/pathLenConstraint0CACRL.crl
package gnu.testlet.java.security.cert.pkix.pkits;
public class ValidSelfIssuedpathLenConstraintTest15 extends BaseValidTest
{
public ValidSelfIssuedpathLenConstraintTest15()
{
super(new String[] { "data/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
"data/certs/pathLenConstraint0SelfIssuedCACert.crt",
"data/certs/pathLenConstraint0CACert.crt" },
new String[] { "data/crls/pathLenConstraint0CACRL.crl" });
}
}
|