Hello. I'm trying to use cryptopp as a crypto mixer what means that I want to encrypt AES256 and then Twofish256 and then Serpent256. After that I want decrypt the text Serpent256 > Twofish256 > AES256.
But it seem that not works from my several test. Do you have any idea to solve this? Please share your experience for me. Thank you. BR. Below is my test code snippet. CryptoPP::CBC_Mode<CryptoPP::AES>::Encryption AES_CBC_Encryption((byte *)pKey1, 32, (byte *)pKey2); AES_CBC_Encryption.ProcessData((byte *)pOutBuffer, (byte *)pInData, nInDataSize); CryptoPP::CBC_Mode<CryptoPP::Twofish>::Encryption Twofish_CBC_Encryption((byte *)pKey1, 32, (byte *)pKey2); Twofish_CBC_Encryption.ProcessData((byte *)pOutBuffer, (byte *)pInData, nInDataSize); CryptoPP::CBC_Mode<CryptoPP::Serpent>::Encryption Serpent_CBC_Encryption((byte *)pKey1, 32, (byte *)pKey2); Serpent_CBC_Encryption.ProcessData((byte *)pOutBuffer, (byte *)pInData, nInDataSize); -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com.
