Example usage for Java javax.crypto.spec IvParameterSpec fields, constructors, methods, implement or subclass
The text is from its open source code.
IvParameterSpec(byte[] iv) Creates an IvParameterSpec object using the bytes in iv as the IV. | |
IvParameterSpec(byte[] iv, int offset, int len) Creates an IvParameterSpec object using the first len bytes in iv , beginning at offset inclusive, as the IV. |
byte[] | getIV() Returns the initialization vector (IV). |