summaryrefslogtreecommitdiff
path: root/fipstest.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix Clang warning on missing template definitionsJeffrey Walton2017-08-161-0/+1
|
* Fix Windows compilation issues (by RaptorFactor) (#444)Marcel Raad2017-07-171-6/+6
| | | | | | | | | | | | * Fix compilation on Windows with /DUNICODE * Fix linking of fipstest for MSVC targeting ARM (__crt_debugger_hook is not available). * Fix build for Clang on Windows with optimizations on. * Fix a warning about a non-existant warning under Clang. * Fix compilation under Intel C++ 18.0 on Windows
* Fix "warning C4702: unreachable code" under Windows PhoneJeffrey Walton2017-05-181-1/+1
|
* Add C++ nullptr support (Issue 383)Jeffrey Walton2017-03-011-14/+14
|
* Remove old VerifierFilter, switch to SignatureVerificationFilterJeffrey Walton2017-02-071-2/+2
| | | | | VerifierFilter was a typedef for SignatureVerificationFilter. The name changed at Crypto++ 5.0 Updated documentation
* Change file preamble to include "originally written by Wei Dai"Jeffrey Walton2017-01-271-1/+1
| | | | We have made a fair number of changes, and we don't want WD to receive credit for issues he was not part of
* Removed remaining dummy parameters for VC6.0 workarounds (Issue 342)Jeffrey Walton2016-12-171-14/+6
|
* Fix fipstest.cpp compile under Unix (Issue 314)Jeffrey Walton2016-10-021-4/+2
|
* Add "Crypto++ DLL" to OutputDebugString messages (Issue 314)Jeffrey Walton2016-10-021-1/+1
| | | | Visual Studio 2010 was opt-in; which Visual Studio 2012 is opt-out
* Improve OutputDebugString messages (Issue 314)Jeffrey Walton2016-10-021-3/+12
|
* Add newline to OutputDebugString (Issue 314)Jeffrey Walton2016-10-021-2/+2
|
* Add information for expected and load address for FIPS DLL module (Issue 314)Jeffrey Walton2016-10-021-4/+22
|
* Whitespace cleanupJeffrey Walton2016-07-241-20/+20
|
* Merge pull request #151 from bretthall/masterJeffrey Walton2016-06-211-0/+4
|\ | | | | Fixed linker error when using VS2015 /MD
| * Fixed linker error when using VS2015 /MDBrett Hall2016-03-291-0/+4
| | | | | | | | | | | | | | Without this change links under Visual Studio 2015 using the /MDd switch ("multithreaded debug dll" c-runtime) fail with a "LNK2005: __crt_debugger_hook already defined in msvcrtd.lib(utility_desktop.obj)" error.
* | Removed extra test for WINAPI_FAMILYJeffrey Walton2016-05-171-1/+1
| |
* | Add changes for Windows Sotre that went missing with my clumsy Git skillsJeffrey Walton2016-05-091-0/+13
|/
* CRYPTOPP 5.6.3 RC6 checkinJeffrey Walton2015-11-051-615/+615
|
* Removed "include <assert.h>" from files. Its now handled by "trap.h"Jeffrey Walton2015-08-031-4/+7
|
* Removed USING_NAMESPACE(std). Changed cout → std::cout, cerr → ↵Jeffrey Walton2015-07-301-1/+1
| | | | std::cerr, ...
* Added "trap.h" include for header and source files that assertJeffrey Walton2015-07-261-0/+2
|
* Cleared -Wunneeded-internal-declaration from GCC 5.1Jeffrey Walton2015-07-191-3/+4
|
* Cleared warning "GCC diagnostic kind" unknown. It appears to be a Clang warningJeffrey Walton2015-07-191-2/+4
|
* Cleared unused variable and function warningsJeffrey Walton2015-07-191-0/+1
|
* Cut-over to COUNTOF in source filesJeffrey Walton2015-07-031-1/+1
|
* Added GCC_DIAGNOSTIC_AWARE to help suppress some warnings on contemporary ↵Jeffrey Walton2015-06-291-0/+5
| | | | compilers. The macro was needed to help with managing old compilers, like GCC 4.2.1, present on OpenBSD
* fix possible error during DLL startup self-test due to calling functions in ↵weidai2010-07-291-17/+4
| | | | ADVAPI32.DLL from DllMain() (http://sourceforge.net/apps/trac/cryptopp/ticket/4)
* changes for 5.6: weidai2009-03-021-4/+2
| | | | | | - added AuthenticatedSymmetricCipher interface class and Filter wrappers - added CCM, GCM (with SSE2 assembly), CMAC, and SEED - improved AES speed on x86 and x64 - removed WORD64_AVAILABLE; compiler 64-bit int support is now required
* fix compile with fix compile for for STLport 5.1.3 and MSVC 2005weidai2007-09-151-1/+1
|
* change default FIPS RNG to use AES instead of DES_EDEweidai2007-05-041-8/+10
|
* update version number, port to Sun C++ 5.8weidai2006-12-181-0/+2
|
* port to GCC 4, reorganize implementations of SetKeyweidai2006-12-101-3/+3
|
* cygwin workaroundweidai2006-12-091-0/+2
|
* fix self-test when installed into unicode pathsweidai2006-09-061-14/+53
|
* change DLL integrity self-test to allow DLL to be Authenticode signedweidai2006-07-301-18/+50
|
* upgrade project files to MSVC 2005 and add x64 platformweidai2006-01-301-1/+3
|
* port to MSVC .NET 2005 beta 2weidai2005-07-121-6/+6
|
* changes done for FIPS-140 lab code dropweidai2005-01-201-39/+50
|
* fix bug in EncryptionPairwiseConsistencyTestweidai2004-02-051-6/+15
|
* reduce source file dependenciesweidai2003-10-141-1/+39
|
* fix in-memory integrity check on Win 9xweidai2003-07-181-23/+39
|
* fix GCC compileweidai2003-07-111-0/+1
|
* merge in 5.0.4 changes (exclude DES and SHA-2 from DLL),weidai2003-07-101-6/+9
| | | | attempt (failed) to build DLL with GCC
* create DLL version, fix GetNextIV() bug in CTR and OFB modesweidai2003-07-041-81/+140
|
* release memory from working set after EDC testweidai2003-06-101-0/+1
|
* misc optimizationsweidai2003-05-161-1/+1
|
* fix in memory EDC test - IAT issueweidai2003-04-221-3/+13
|
* improve in memory EDCweidai2003-04-181-5/+20
|
* fix bug in Grouperweidai2003-04-151-3/+39
| | | | | | | | add RIPEMD-???, Whirlpool, Shacal2, Camellia, Two-Track MAC (Kevin Springle) change ChannelSwitch to allow non-blocking input (denis bider) change Redirector to allow more options (denis bider) fix MaurerRandomnessTest optimize MD2 (Kevin Springle)
* various changes for 5.1weidai2003-03-201-2/+2
|