JSS 3.1.2

org.mozilla.jss.crypto
Class IVParameterSpec

java.lang.Object
  |
  +--org.mozilla.jss.crypto.IVParameterSpec
All Implemented Interfaces:
java.security.spec.AlgorithmParameterSpec

public class IVParameterSpec
extends java.lang.Object
implements java.security.spec.AlgorithmParameterSpec

An algorithm parameter that consists of an initialization vector (IV).


Field Summary
private  byte[] iv
           
 
Constructor Summary
private IVParameterSpec()
           
  IVParameterSpec(byte[] iv)
           
 
Method Summary
 byte[] getIV()
          Returns a reference to an internal copy of the initialization vector.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

iv

private byte[] iv
Constructor Detail

IVParameterSpec

private IVParameterSpec()

IVParameterSpec

public IVParameterSpec(byte[] iv)
Method Detail

getIV

public byte[] getIV()
Returns a reference to an internal copy of the initialization vector.

JSS 3.1.2