|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectxjava.security.IJCE_Traceable
xjava.security.Cipher
cryptix.provider.cipher.DES2X
This class implements DES2X encryption with four independent keys. DES2X acts as a block cipher with an 8 byte block size.
The encoded form of the DESX key should be a 32-byte array, consisting of one 8-byte DES key K and three XOR keys K1, K2 and K3 in order - K, K1, K2 and K3. Encryption and decryption are done as follows:
When DES2X is used with the CBC mode class (algorithm name "DES2X/CBC"), the result is Outer-CBC, and only one IV is used.
References:
Copyright © 1998
Systemics Ltd on behalf of the
Cryptix Development Team.
All rights reserved.
$Revision: 1.3 $
| Field Summary |
|---|
| Fields inherited from class xjava.security.Cipher |
|---|
DECRYPT, ENCRYPT, UNINITIALIZED |
| Constructor Summary | |
|---|---|
DES2X()
Constructs a DES2X cipher object, in the UNINITIALIZED state. |
|
| Method Summary | |
|---|---|
int |
engineBlockSize()
SPI: Returns the length of an input block, in bytes. |
protected void |
engineInitDecrypt(java.security.Key key)
SPI: Initializes this cipher for decryption, using the specified key. |
void |
engineInitEncrypt(java.security.Key key)
SPI: Initializes this cipher for encryption, using the specified key. |
protected int |
engineUpdate(byte[] in,
int inOffset,
int inLen,
byte[] out,
int outOffset)
SPI: This is the main engine method for updating data. |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public DES2X()
| Method Detail |
public int engineBlockSize()
engineBlockSize in class Cipher
public void engineInitEncrypt(java.security.Key key)
throws java.security.KeyException
engineInitEncrypt in class Cipherkey - the key to use for encryption.
java.security.KeyException - if one of the following occurs:
protected void engineInitDecrypt(java.security.Key key)
throws java.security.KeyException
engineInitDecrypt in class Cipherkey - the key to use for decryption.
java.security.KeyException - if one of the following occurs:
protected int engineUpdate(byte[] in,
int inOffset,
int inLen,
byte[] out,
int outOffset)
in and out may be the same array, and the input and output regions may overlap.
engineUpdate in class Cipherin - the input data.inOffset - the offset into in specifying where the data starts.inLen - the length of the subarray.out - the output array.outOffset - the offset indicating where to start writing into
the out array.
CryptixException - if the native library is being used, and it
reports an error.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||