Uses of Class
com.digitalsanctuary.atg.crypto.EncryptorException

Packages that use EncryptorException
com.digitalsanctuary.atg.crypto   
 

Uses of EncryptorException in com.digitalsanctuary.atg.crypto
 

Methods in com.digitalsanctuary.atg.crypto that throw EncryptorException
 void AESEncryptorComponent.setupEncryptor()
          This method sets up the AES Encryptor.
 java.lang.String AbstractEncryptorComponent.computeMAC(java.lang.String pClearText)
          This method computes the MAC message signature for the clear text.
 byte[] AbstractEncryptorComponent.decryptBytes(byte[] pBytesToDecrypt)
          This method takes in a byte array and decrypts it using the AES algorithm and the key used to setup this class.
 java.lang.String AbstractEncryptorComponent.decryptString(java.lang.String pEncryptedContent)
          This method takes in a String of a Base64 encoded byte array of encrypted data and decrypts it using the AES algorithm and the key used to setup this class.
abstract  void AbstractEncryptorComponent.setupEncryptor()
          This method sets up the encryptor.
 byte[] AbstractEncryptorComponent.encryptBytes(byte[] pBytesToEncrypt)
          This method takes in a byte array and encrypts it using the AES algorithm and the key used to setup this class.
 java.lang.String AbstractEncryptorComponent.encryptString(java.lang.String pUnencryptedContent)
          This method takes in a String and encrypts is using the AES algorithm and the key used to setup this class.
 java.lang.String AbstractEncryptor.computeMAC(java.lang.String pClearText)
          This method computes the MAC message signature for the clear text.
 java.lang.String AbstractEncryptor.decrypt(java.lang.String pStringToDecrypt)
          This method wraps the byte array based encrypt and allows you to pass in a String, which it decodes to a byte array.
 java.lang.String AbstractEncryptor.encrypt(java.lang.String pStringToEncrypt)
          This method wraps the byte array based encrypt and allows you to pass in a String, which it decodes to a byte array.
 void AbstractEncryptor.setKey(byte[] pKey)
          This method takes in a cipher key byte array, sets it into this class's member variable KeyBytes, and then calls initialize() to initialize the encryption and decryption Cipher instances with this new key.
protected  byte[] AbstractEncryptor.decrypt(byte[] pBytesToDecrypt)
          This method takes in a byte array and decrypts it using the AES algorithm and the key used to setup this class.
protected  byte[] AbstractEncryptor.encrypt(byte[] pBytesToEncrypt)
          This method takes in a byte array and encrypts it using the AES algorithm and the key used to setup this class.
 

Constructors in com.digitalsanctuary.atg.crypto that throw EncryptorException
AESEncryptor(byte[] pKey)
           
AESEncryptor(java.lang.String pKey)
           
AbstractEncryptor(byte[] pKey)
          This constructor takes in a cipher key in the form of a byte array.
AbstractEncryptor(java.lang.String pKey)
          This constructor takes in a cipher key in the form of a String.