Re: Help with cascading encryption

2010-02-09 Thread kehon
nvm i found the bug. I didn't give AES::Encryption() a key. I think that AES should have checked that the value was not null and thrown an exception. I'll file a bug report here. On Feb 8, 10:27 pm, kehon wrote: > is there a better way to implement cascading ciphers that vary in > length based on

Re: Help with cascading encryption

2010-02-08 Thread kehon
is there a better way to implement cascading ciphers that vary in length based on user input other than the way i'm trying to do it -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to cryptopp-users-unsubscr...@googlegrou

Help with cascading encryption

2010-02-08 Thread kehon
I'm making a program that will allow the user to use multiple ciphers together (twofish -> aes -> etc) I would store the encryption they wanted into a vector and store the order and encryption methods in the file. The problem is I'm not quite sure how to implement this. this is what i have so far.