All Packages Class Hierarchy This Package Previous Next Index
Class au.net.aba.crypto.spec.InlineIvParameterSpec
java.lang.Object
|
+----au.net.aba.crypto.spec.InlineIvParameterSpec
- public class InlineIvParameterSpec
- extends Object
- implements AlgorithmParameterSpec
This class specifies that an initialisation vector (IV) is contained in
the input stream/output stream produced by the cipher.
- See Also:
- IvParameterSpec, AlgorithmParameterSpec
-
ident
-
-
InlineIvParameterSpec()
- Specify that the IV is not encrypted.
-
InlineIvParameterSpec(boolean)
- Specify whether or not the IV is encrypted.
-
isEncryptedIv()
- Returns whether we can expect an encrypted IV.
ident
public static final String ident
InlineIvParameterSpec
public InlineIvParameterSpec()
- Specify that the IV is not encrypted.
InlineIvParameterSpec
public InlineIvParameterSpec(boolean encrypted)
- Specify whether or not the IV is encrypted.
- Parameters:
- encrypted - true if it is, false otherwise.
isEncryptedIv
public boolean isEncryptedIv()
- Returns whether we can expect an encrypted IV.
- Returns:
- true if the IV is encrypted, false otherwise.
All Packages Class Hierarchy This Package Previous Next Index