IAIK PKCS#11 Wrapper
version 1.2.16

iaik.pkcs.pkcs11.parameters
Class InitializationVectorParameters

java.lang.Object
  extended byiaik.pkcs.pkcs11.parameters.InitializationVectorParameters
All Implemented Interfaces:
Cloneable, Parameters

public class InitializationVectorParameters
extends Object
implements Parameters

This class encapsulates parameters for general block ciphers in CBC mode. Those are all Mechanism.*_CBC and Mechanism.*_CBC_PAD mechanisms. This class also applies to other mechanisms which require just an initialization vector as parameter.

Invariants
(initializationVector_ <> null)

Field Summary
protected  byte[] initializationVector_
          The initialization vector.
 
Constructor Summary
InitializationVectorParameters(byte[] initializationVector)
          Create a new InitializationVectorParameters object with the given initialization vector.
 
Method Summary
 Object clone()
          Create a (deep) clone of this object.
 boolean equals(Object otherObject)
          Compares all member variables of this object with the other object.
 byte[] getInitializationVector()
          Get the initialization vector.
 Object getPKCS11ParamsObject()
          Get this parameters object as a byte array.
 int hashCode()
          The overriding of this method should ensure that the objects of this class work correctly in a hashtable.
 void setInitializationVector(byte[] initializationVector)
          Set the initialization vector.
 String toString()
          Returns the string representation of this object.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

initializationVector_

protected byte[] initializationVector_
The initialization vector.

Constructor Detail

InitializationVectorParameters

public InitializationVectorParameters(byte[] initializationVector)
Create a new InitializationVectorParameters object with the given initialization vector.

Parameters:
initializationVector - The initialization vector.
Preconditions
(initializationVector <> null)
Postconditions
Method Detail

clone

public Object clone()
Create a (deep) clone of this object.

Returns:
A clone of this object.
Preconditions
Postconditions
(result <> null) and (result instanceof InitializationVectorParameters) and (result.equals(this))

getPKCS11ParamsObject

public Object getPKCS11ParamsObject()
Get this parameters object as a byte array.

Specified by:
getPKCS11ParamsObject in interface Parameters
Returns:
This object as a byte array.
Preconditions
Postconditions
(result <> null)

getInitializationVector

public byte[] getInitializationVector()
Get the initialization vector.

Returns:
The initialization vector.
Preconditions
Postconditions
(result <> null)

setInitializationVector

public void setInitializationVector(byte[] initializationVector)
Set the initialization vector.

Parameters:
initializationVector - The initialization vector.
Preconditions
(initializationVector <> null)
Postconditions

toString

public String toString()
Returns the string representation of this object. Do not parse data from this string, it is for debugging only.

Returns:
A string representation of this object.

equals

public boolean equals(Object otherObject)
Compares all member variables of this object with the other object. Returns only true, if all are equal in both objects.

Parameters:
otherObject - The other object to compare to.
Returns:
True, if other is an instance of this class and all member variables of both objects are equal. False, otherwise.
Preconditions
Postconditions

hashCode

public int hashCode()
The overriding of this method should ensure that the objects of this class work correctly in a hashtable.

Returns:
The hash code of this object.
Preconditions
Postconditions

IAIK PKCS#11 Wrapper
version 1.2.16

IAIK JavaSecurity Website http://jce.iaik.tugraz.at/

IAIK at Graz University of Technology, Austria, Europe
Copyright 2001-2002, IAIK, Graz University of Technology, Inffeldgasse 16a, 8010 Graz, Austria. All Rights Reserved.