Home | History | Annotate | Download | only in params

Lines Matching refs:key

7      * DES-EDE Key length in bytes.
12 byte[] key)
14 super(key);
16 if (isWeakKey(key, 0, key.length))
18 throw new IllegalArgumentException("attempt to create weak DESede key");
23 * return true if the passed in key is a DES-EDE weak key.
25 * @param key bytes making up the key
26 * @param offset offset into the byte array the key starts at
27 * @param length number of bytes making up the key
30 byte[] key,
36 if (DESParameters.isWeakKey(key, i))
46 * return true if the passed in key is a DES-EDE weak key.
48 * @param key bytes making up the key
49 * @param offset offset into the byte array the key starts at
52 byte[] key,
55 return isWeakKey(key, offset, key.length - offset);