Talk:Advanced Encryption Standard
From Crypto++ Wiki
[edit] Compilation notes
On my Visual Studio 2008, I had to change rijndael.cpp, like this:
// Commented out: // #if !defined(_MSC_VER) || (_MSC_VER < 1400) // Added: #if 1
Otherwise, encryption would crash the executable when called from a CLR mixed code. These #if conditions appear twice in the code; before AS_PUSH_IF86(bx) and before AS_POP_IF86(bx).
I took the hint from trungantran at Google Groups. Guillep2k 15:47, 2 January 2010 (EST)