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

Variable Index

 o ident

Constructor Index

 o InlineIvParameterSpec()
Specify that the IV is not encrypted.
 o InlineIvParameterSpec(boolean)
Specify whether or not the IV is encrypted.

Method Index

 o isEncryptedIv()
Returns whether we can expect an encrypted IV.

Variables

 o ident
 public static final String ident

Constructors

 o InlineIvParameterSpec
 public InlineIvParameterSpec()
Specify that the IV is not encrypted.

 o InlineIvParameterSpec
 public InlineIvParameterSpec(boolean encrypted)
Specify whether or not the IV is encrypted.

Parameters:
encrypted - true if it is, false otherwise.

Methods

 o 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