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

/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStoreSpi.java426 * @param protParam the <code>ProtectionParameter</code>
437 * <code>protParam</code> were insufficient or invalid
440 * and the specified <code>protParam</code> does not contain
446 KeyStore.ProtectionParameter protParam)
454 if (protParam == null) {
464 if (protParam instanceof KeyStore.PasswordProtection) {
470 (KeyStore.PasswordProtection)protParam;
496 * @param protParam the <code>ProtectionParameter</code>
505 KeyStore.ProtectionParameter protParam)
509 if (protParam !
445 engineGetEntry(String alias, KeyStore.ProtectionParameter protParam) argument
504 engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam) argument
[all...]
H A DKeyStore.java134 * KeyStore.ProtectionParameter protParam =
139 * ks.getEntry("privateKeyAlias", protParam);
146 * ks.setEntry("secretKeyAlias", skEntry, protParam);
1257 * @param protParam the <code>ProtectionParameter</code>
1269 * <code>protParam</code> were insufficient or invalid
1272 * and the specified <code>protParam</code> does not contain
1280 public final Entry getEntry(String alias, ProtectionParameter protParam) argument
1290 return keyStoreSpi.engineGetEntry(alias, protParam);
1303 * @param protParam the <code>ProtectionParameter</code>
1318 ProtectionParameter protParam)
1317 setEntry(String alias, Entry entry, ProtectionParameter protParam) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java894 * @param protParam this must be <code>null</code>
903 * <code>protParam</code> were insufficient or invalid
908 KeyStore.ProtectionParameter protParam)
914 if (protParam != null &&
915 protParam instanceof KeyStore.PasswordProtection &&
916 ((KeyStore.PasswordProtection)protParam).getPassword() != null &&
1004 * @param protParam this must be <code>null</code>
1011 KeyStore.ProtectionParameter protParam)
1017 if (protParam != null &&
1018 protParam instanceo
907 engineGetEntry(String alias, KeyStore.ProtectionParameter protParam) argument
1010 engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam) argument
[all...]

Completed in 43 milliseconds