|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--sam.cipher.Cipher | +--sam.cipher.Rijndael
Implementation of the Rijndael cipher. Retrofitted for personal use by Guillaume Lacôte. Rijndael --pronounced Reindaal-- is a variable block-size (128-, 192- and 256-bit), variable key-size (128-, 192- and 256-bit) symmetric cipher.
Rijndael was written by Vincent Rijmen and Joan Daemen.
Portions of this code are Copyright © 1997, 1998
Systemics Ltd on behalf of the
Cryptix Development Team.
All rights reserved.
$Revision: $
Nested Class Summary | |
static class |
Rijndael.Key
Key implementation that is adapted to the Rijndael cipher. |
Nested classes inherited from class sam.cipher.Cipher |
Cipher.ByteArrayFilter, Cipher.Error |
Field Summary |
Fields inherited from class sam.cipher.Cipher |
DECRYPT, EMPTY, ENCRYPT, INVERSE, key, REGISTRY |
Constructor Summary | |
Rijndael(sam.cipher.Key key)
|
Method Summary | |
protected void |
decrypt(byte[] data,
int offset,
sam.cipher.Key sessionKey)
Convenience method to decrypt exactly one block of plaintext, assuming Rijndael's default block size (128-bit). |
protected void |
encrypt(byte[] data,
int offset,
sam.cipher.Key sessionKey)
Convenience method to encrypt exactly one block of plaintext, assuming Rijndael's default block size (128-bit). |
protected int |
getPreferredSize(int size)
Specifiy preferred buffer size. |
static int |
getRounds(int keySize,
int blockSize)
Return The number of rounds for a given Rijndael's key and block sizes. |
Methods inherited from class sam.cipher.Cipher |
cipher, cipher, fill, main, store, store, storeReversed, streamTest, test, unstoreInt, unstoreLong, unstoreReversedLong |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Rijndael(sam.cipher.Key key)
Method Detail |
protected int getPreferredSize(int size)
Cipher
May return a fixed value, ignoring suggested size (e.g. return 16;
).
By default, this implementation simply returns its argument unchanged.
getPreferredSize
in class Cipher
size
- proposed buffer size (in bytes)
protected void encrypt(byte[] data, int offset, sam.cipher.Key sessionKey)
encrypt
in class Cipher
sessionKey
- The session key to use for encryption.protected void decrypt(byte[] data, int offset, sam.cipher.Key sessionKey)
decrypt
in class Cipher
data
- The ciphertext.sessionKey
- The session key to use for decryption.public static int getRounds(int keySize, int blockSize)
keySize
- The size of the user key material in bytes.blockSize
- The desired block size in bytes.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |