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

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DAes128.java44 public static byte[] stringToKey(char[] password, String salt, byte[] params) method in class:Aes128
46 return CRYPTO.stringToKey(password, salt, params);
H A DAes256.java44 public static byte[] stringToKey(char[] password, String salt, byte[] params) method in class:Aes256
46 return CRYPTO.stringToKey(password, salt, params);
H A DArcFourHmac.java45 public static byte[] stringToKey(char[] password) method in class:ArcFourHmac
47 return CRYPTO.stringToKey(password);
H A DDes3.java42 public static byte[] stringToKey(char[] chars) method in class:Des3
44 return CRYPTO.stringToKey(chars);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDes3DkCrypto.java52 public byte[] stringToKey(char[] salt) throws GeneralSecurityException { method in class:Des3DkCrypto
56 return stringToKey(saltUtf8, null);
65 private byte[] stringToKey(byte[] secretAndSalt, byte[] opaque) method in class:Des3DkCrypto
69 throw new RuntimeException("Invalid parameter to stringToKey");
H A DAesDkCrypto.java102 public byte[] stringToKey(char[] password, String salt, byte[] s2kparams) method in class:AesDkCrypto
108 return stringToKey(password, saltUtf8, s2kparams);
118 private byte[] stringToKey(char[] secret, byte[] salt, byte[] params) method in class:AesDkCrypto
124 throw new RuntimeException("Invalid parameter to stringToKey");
H A DArcFourCrypto.java67 public byte[] stringToKey(char[] passwd) method in class:ArcFourCrypto
69 return stringToKey(passwd, null);
76 private byte[] stringToKey(char[] secret, byte[] opaque) method in class:ArcFourCrypto
80 throw new RuntimeException("Invalid parameter to stringToKey");
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptionKey.java190 stringToKey(password, salt, s2kparams, etype),
219 stringToKey(password, salt, null, etypes[i]),
261 private static byte[] stringToKey(char[] password, String salt, method in class:EncryptionKey
277 return Des3.stringToKey(pwsalt);
280 return ArcFourHmac.stringToKey(password);
283 return Aes128.stringToKey(password, salt, s2kparams);
286 return Aes256.stringToKey(password, salt, s2kparams);
327 keyValue = stringToKey(password, salt, null, keyType);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java1306 private static final Method stringToKey; field in class:KDC
1316 stringToKey = EncryptionKey.class.getDeclaredMethod(
1317 "stringToKey",
1319 stringToKey.setAccessible(true);
1350 return (byte[])stringToKey.invoke(

Completed in 1346 milliseconds