Searched defs:targetConstraints (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXBuilderParameters.java91 * @param targetConstraints a <code>CertSelector</code> specifying the
102 targetConstraints) throws InvalidAlgorithmParameterException
105 setTargetCertConstraints(targetConstraints);
117 * @param targetConstraints a <code>CertSelector</code> specifying the
127 CertSelector targetConstraints)
131 setTargetCertConstraints(targetConstraints);
101 PKIXBuilderParameters(Set<TrustAnchor> trustAnchors, CertSelector targetConstraints) argument
126 PKIXBuilderParameters(KeyStore keystore, CertSelector targetConstraints) argument
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilderParameters.java59 * @param targetConstraints a <code>CertSelector</code> specifying the
69 CertSelector targetConstraints) throws InvalidAlgorithmParameterException
71 super(trustAnchors, targetConstraints);
82 * @param targetConstraints a <code>CertSelector</code> specifying the
90 CertSelector targetConstraints)
93 super(keystore, targetConstraints);
68 SunCertPathBuilderParameters(Set<TrustAnchor> trustAnchors, CertSelector targetConstraints) argument
89 SunCertPathBuilderParameters(KeyStore keystore, CertSelector targetConstraints) argument
H A DKeyChecker.java51 private CertSelector targetConstraints; field in class:KeyChecker
67 this.targetConstraints = targetCertSel;
117 if ((targetConstraints != null) &&
118 (targetConstraints.match(currCert) == false)) {

Completed in 47 milliseconds