Thanks for this patch. I'll incorporate it into the next release. ----- Original Message ----- From: "Jody Hagins" <[EMAIL PROTECTED]> To: "Crypto++ Users" <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2007 4:44 PM Subject: error compiling vmac.cpp
> > using gcc 3.2, I had to make the following change to version 5.5.1 > > diff -r Crypto++-5.5.1/vmac.cpp Crypto++-5.5.1.mine/vmac.cpp > 516c516 > < #define a1 (((word32 *)(polyS+i*4))[3- > NativeByteOrder::ToEnum()]) > --- >> #define a1 (*(((word32 >> *)(polyS+i*4))+3-NativeByteOrder::ToEnum())) > 518c518 > < #define a3 (((word32 *)(polyS+i*4))[1- > NativeByteOrder::ToEnum()]) > --- >> #define a3 (*(((word32 >> *)(polyS+i*4))+1-NativeByteOrder::ToEnum())) > > > > --~--~---------~--~----~------------~-------~--~----~ 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. -~----------~----~----~----~------~----~------~--~---
