May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class javax.crypto.spec.IvParameterSpec
This class represents an IV (initialization vector) for a cipher that uses a feedback mode. Ciphers in CBC, PCBC, CFB, and OFB modes need to be initialized with an IV.
public javax.crypto.spec.IvParameterSpec
extends java.lang.Object
implements java.security.spec.AlgorithmParameterSpec {
// Constructors
public IvParameterSpec(byte[]);
public IvParameterSpec(byte[], int, int);
// Instance Methods
public byte[] getIV();
}
AlgorithmParameterSpec, Cipher