> What I do is concentrate my error checking and analysis on the desktop > OSes, like OS X and Linux. Once I am satisfied the "core" logic is sound, I > port it to another platform, like iOS and Android. The philosophy above > means you need a clean separation between "core" and "window/ui" logic or > routines. You'll get the hang of it quickly. >
BTW, you don't quite have the clean separation. Notice QT objects are cross-pollinating into the core routines. The constData() is part of a QtString. CFB_Mode<AES>::Encryption e((const byte *) binKey.constData(), binKey.length(), staticIv, 1); That means you can't test it stand-alone. Jeff -- -- 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. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
