C D E G I N R S

C

Cryptography - class asgaard.utils.cryptography.Cryptography.
Class Cryptography is the abstract class that contains abstract forms of all cryptography functions (the methods here will just throw no such method exceptions).
Cryptography() - Constructor for class asgaard.utils.cryptography.Cryptography
 

D

decrypt(byte[]) - Method in class asgaard.utils.cryptography.Cryptography
Place holder for decryption.
decrypt(byte[]) - Method in class asgaard.utils.cryptography.IDEA
Performs a IDEA decryption.
decrypt(byte[]) - Method in class asgaard.utils.cryptography.ROT13
Performs a ROT13 decryption.
decryptFinish() - Method in class asgaard.utils.cryptography.Cryptography
Place holder for decryption tidy up.
decryptFinish() - Method in class asgaard.utils.cryptography.IDEA
Tidies up a IDEA decryption.
decryptFinish() - Method in class asgaard.utils.cryptography.ROT13
Tidies up a ROT13 decryption.

E

encrypt(byte[]) - Method in class asgaard.utils.cryptography.Cryptography
Place holder for encryption function.
encrypt(byte[]) - Method in class asgaard.utils.cryptography.IDEA
Performs a IDEA encryption.
encrypt(byte[]) - Method in class asgaard.utils.cryptography.ROT13
Performs a ROT13 encryption.
encryptFinish() - Method in class asgaard.utils.cryptography.Cryptography
Place holder for encryption tidy up.
encryptFinish() - Method in class asgaard.utils.cryptography.IDEA
Tidies up a IDEA encryption.
encryptFinish() - Method in class asgaard.utils.cryptography.ROT13
Tidies up a ROT13 encryption.

G

getCrypto(String) - Static method in class asgaard.utils.cryptography.Cryptography
The getCrypto method takes the name of a cryptographic algorithm and generates an object that implements it.
getKey() - Method in class asgaard.utils.cryptography.Cryptography
Place holder for getting a key.
getKey() - Method in class asgaard.utils.cryptography.IDEA
Retrieves the IDEA user key from an object.

I

IDEA - class asgaard.utils.cryptography.IDEA.
IDEA.java - A java implementation of the IDEA block cipher.
IDEA() - Constructor for class asgaard.utils.cryptography.IDEA
Constructor - set up IDEA object with default key (all zeros).

N

NoSuchCryptoException - exception asgaard.utils.cryptography.NoSuchCryptoException.
A NoSuchCryptoException is thrown if an attempt is made to use or create an object of a cryptosystem that has not been implemented or can not be found.
NoSuchCryptoException() - Constructor for class asgaard.utils.cryptography.NoSuchCryptoException
 
NoSuchCryptoException(String) - Constructor for class asgaard.utils.cryptography.NoSuchCryptoException
 

R

ROT13 - class asgaard.utils.cryptography.ROT13.
ROT13 is a popular cipher on USEnet News.
ROT13() - Constructor for class asgaard.utils.cryptography.ROT13
 

S

setKey(byte[]) - Method in class asgaard.utils.cryptography.Cryptography
Place holder for setting a key.
setKey(byte[]) - Method in class asgaard.utils.cryptography.IDEA
Stores the encryption key in the IDEA object.

C D E G I N R S