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

/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCache.java60 * using a pathname (skey) and the cache must return an entry
61 * if skey is a sub-path of the AuthCacheValue.path field.
63 public AuthCacheValue get (String pkey, String skey); argument
H A DAuthCacheImpl.java56 String skey = value.getPath();
65 if (inf.path == null || inf.path.startsWith (skey)) {
75 public synchronized AuthCacheValue get (String pkey, String skey) { argument
81 if (skey == null) {
88 if (skey.startsWith (inf.path)) {
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4933582.java238 public AuthCacheValue get (String pkey, String skey) { argument
239 System.out.println ("get: " + pkey + " " + skey);
240 AuthCacheValue i = super.get (pkey, skey);
/openjdk7/jdk/test/sun/security/pkcs11/KeyStore/
H A DBasic.java217 testnum = Basic.skey(testnum);
220 // setAttribute, pkey, sign, skey, copy
224 testnum = Basic.skey(testnum);
230 } else if ("skey".equals(test)) {
231 Basic.skey(1);
397 private static int skey(int testnum) throws Exception { method in class:Basic
440 SecretKey skey = (SecretKey)ks.getKey("sk1", null);
441 if ("DES".equals(skey.getAlgorithm())) {
445 ("expected DES, got " + skey.getAlgorithm());
449 skey
[all...]

Completed in 33 milliseconds