Matt Jacobs
unread,Dec 20, 2007, 12:30:06 AM12/20/07Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Crypto++ Users
That is, can I encrypt (or decrypt) into the same buffer, as below?
// assume Buffer is an array of bytes containing previously encrypted
data
CTR_Mode<AES>::Decryption ctrDecryption(btKey, SHA256::DIGESTSIZE,
btIV);
ctrDecryption.ProcessData(Buffer, Buffer, Len);
And if so, is that true for all modes? ECB? CBC?