javax.crypto
Class NullCipher

java.lang.Object
  |
  +--javax.crypto.Cipher
        |
        +--javax.crypto.NullCipher

public class NullCipher
extends Cipher

Cipher that does not process the data.


Attention:  This is not a SUN implementation!

This class has been developed by IAIK according to the documentation publically available.
For SUNīs documentation of this class see http://java.sun.com/security/JCE1.2/spec/apidoc/index.html


This class represents a cipher object that does not en/decrypt the data leaving it unchanged.


Fields inherited from class javax.crypto.Cipher
DECRYPT_MODE, ENCRYPT_MODE
 
Constructor Summary
NullCipher()
          Default Constructor.
 
Methods inherited from class javax.crypto.Cipher
doFinal, doFinal, doFinal, doFinal, doFinal, doFinal, getAlgorithm, getBlockSize, getInstance, getInstance, getIV, getOutputSize, getParameters, getProvider, init, init, init, init, init, init, toString, update, update, update, update
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NullCipher

public NullCipher()
Default Constructor.