Package Crypto :: Package Cipher :: Module AES :: Class AESCipher
[frames] | no frames]

Class AESCipher

blockalgo.BlockAlgo --+
                      |
                     AESCipher

AES cipher object
Instance Methods
 
__init__(self, key, *args, **kwargs)
Initialize an AES cipher object
    Inherited from blockalgo.BlockAlgo
 
decrypt(self, ciphertext)
Decrypt data with the key and the parameters set at initialization.
 
encrypt(self, plaintext)
Encrypt data with the key and the parameters set at initialization.
Method Details

__init__(self, key, *args, **kwargs)
(Constructor)

 

Initialize an AES cipher object

See also new() at the module level.

Overrides: blockalgo.BlockAlgo.__init__