Searched refs:IV (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESWrapCipher.java48 private static final byte[] IV = { field in class:AESWrapCipher
138 * Returns the initialization vector (IV) which is null for this cipher.
382 System.arraycopy(IV, 0, out, 0, IV.length);
383 System.arraycopy(keyVal, 0, out, IV.length, 8);
390 System.arraycopy(IV, 0, out, 0, IV.length);
391 System.arraycopy(keyVal, 0, out, IV.length, keyVal.length);
397 System.arraycopy(out, 0, buffer, 0, IV.length);
398 System.arraycopy(out, i*8, buffer, IV
[all...]

Completed in 297 milliseconds