is new.
java.lang.Objectjavax.crypto.spec.IvParameterSpec
This class specifies an initialization vector (IV). Examples which use IVs are ciphers in feedback mode, e.g., DES in CBC mode and RSA ciphers with OAEP encoding operation.
| Constructor Summary | |
|---|---|
IvParameterSpec
(byte[] iv)
Creates an IvParameterSpec object using
|
|
IvParameterSpec
(byte[] iv, int offset, int len)
Creates an IvParameterSpec object using
|
|
| Method Summary | |
|---|---|
| byte[] |
getIV
() Returns the initialization vector (IV). |
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Constructor Detail |
|---|
public IvParameterSpec(byte[] iv)
Creates an IvParameterSpec object using
iv - the buffer with the IV. The contents of the buffer are copied to protect against subsequent modification.
public IvParameterSpec(byte[] iv,
int offset,
int len)
Creates an IvParameterSpec object using
The bytes that constitute the IV are those between iv[offset] and iv[offset+len-1] inclusive.
iv - the buffer with the IV. The first len bytes of the buffer beginning at offset inclusive are copied to protect against subsequent modification.
starts.
bytes.
| Method Detail |
|---|
public byte[] getIV()
the initialization vector (IV). Returns a new array each time this method is called.