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

/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSecmod.java255 boolean isTrusted(X509Certificate cert, TrustType trustType) { argument
264 return (attr == null) ? false : attr.isTrusted(trustType);
589 final TrustType trustType; field in class:Secmod.KeyStoreLoadParameter
591 public KeyStoreLoadParameter(TrustType trustType, char[] password) { argument
592 this(trustType, new PasswordProtection(password));
595 public KeyStoreLoadParameter(TrustType trustType, ProtectionParameter prot) { argument
596 if (trustType == null) {
597 throw new NullPointerException("trustType must not be null");
599 this.trustType = trustType;
[all...]

Completed in 31 milliseconds