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

/openjdk7/jdk/test/sun/security/tools/jarsigner/
H A DJarSigningNonAscii.java39 private static String keystore; field in class:JarSigningNonAscii
47 String keystore = srcDir + "/JarSigning.keystore";
60 "-keystore", keystore,
75 "-keystore", keystore,
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXBuilderParameters.java112 * Only keystore entries that contain trusted <code>X509Certificate</code>s
115 * @param keystore a <code>KeyStore</code> from which the set of
119 * @throws KeyStoreException if <code>keystore</code> has not been
121 * @throws InvalidAlgorithmParameterException if <code>keystore</code> does
123 * @throws NullPointerException if <code>keystore</code> is
126 public PKIXBuilderParameters(KeyStore keystore, argument
130 super(keystore);
H A DPKIXParameters.java131 * Only keystore entries that contain trusted <code>X509Certificates</code>
134 * @param keystore a <code>KeyStore</code> from which the set of
136 * @throws KeyStoreException if the keystore has not been initialized
137 * @throws InvalidAlgorithmParameterException if the keystore does
139 * @throws NullPointerException if the keystore is <code>null</code>
141 public PKIXParameters(KeyStore keystore) argument
144 if (keystore == null)
145 throw new NullPointerException("the keystore parameter must be " +
148 Enumeration<String> aliases = keystore.aliases();
151 if (keystore
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilderParameters.java80 * @param keystore A keystore from which the set of most-trusted
84 * @throws KeyStoreException if the keystore has not been initialized.
85 * @throws InvalidAlgorithmParameterException if the keystore does
87 * @throws NullPointerException if the keystore is <code>null</code>
89 public SunCertPathBuilderParameters(KeyStore keystore, argument
93 super(keystore, targetConstraints);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DServerIdentityTest.java197 ServerIdentityTest(SSLContext context, String keystore) argument
200 iphost = keystore.equals("ipstore");
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java642 // ignore, treat it like we have no keystore
819 // perform keystore alias principal replacement.
1077 // never happens, because keystore has already been loaded
1891 List<PolicyParser.PrincipalEntry> principals, KeyStore keystore) {
1893 if (principals == null || principals.size() == 0 || keystore == null)
1904 if ((name = getDN(pppe.principalName, keystore)) == null) {
1927 KeyStore keystore) throws Exception {
1961 // get the suffix and perform keystore alias replacement
1970 if ((suffix = getDN(suffix, keystore)) == null) {
2000 private String getDN(String alias, KeyStore keystore) { argument
1890 replacePrincipals( List<PolicyParser.PrincipalEntry> principals, KeyStore keystore) argument
1926 expandPermissionName(PolicyParser.PermissionEntry pe, KeyStore keystore) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java68 * keystore loading error
110 static final int IN_KEYSTORE = 0x01; // signer is in keystore
118 KeyStore store; // the keystore specified by -keystore
119 // or the default keystore, never null
121 String keystore; // key store file field in class:JarSigner
122 boolean nullStream = false; // null keystore input stream (NONE)
123 boolean token = false; // token-based keystore
127 char[] storepass; // keystore password
129 String storetype; // keystore typ
[all...]

Completed in 35 milliseconds