Class Summary |
DecryptCBC |
Use this class to decrypt ciphertext generated by EncryptCBC. |
DecryptCFB |
Use this class to decrypt ciphertext generated by EncryptCFB. |
DecryptECB |
Use this class to decrypt ciphertext generated by EncryptECB. |
DecryptMode |
DecryptMode objects are used to decrypt ciphertext generated with
a correpsonding EncryptMode object. |
DecryptOFB |
Use this class to decrypt ciphertext generated by EncryptOFB. |
EncryptCBC |
Cipher Block Chaining mode xors each plain block with the previous
cipher block before encrypting. |
EncryptCFB |
This class implements 8-bit Cipherblock FeedBack mode which encrypts
a whole block for each plaintext character. |
EncryptECB |
Electronic Codebook Mode simply encrypts each block of plaintext
independently. |
EncryptMode |
Descendants of EncryptMode encrypt arbtrarily large arrays of
plaintext. |
EncryptOFB |
Output Fedback Mode iterates the encryption routine on the IV and xors
the resulting stream with the plaintext to produce the ciphertext. |
OFBProducer |
This class is used by EncryptOFB and DecryptOFB to precalculate the
keystream. |