Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Regenerate cryptest.nmake list | Jeffrey Walton | 2019-04-27 | 1 | -30/+32 |
| | |||||
* | Fix NULL device | Jeffrey Walton | 2019-02-04 | 1 | -11/+11 |
| | |||||
* | Fix cryptest.nmake file list | Jeffrey Walton | 2019-02-03 | 1 | -32/+30 |
| | |||||
* | Add ChaCha20/Poly1305 AEAD cipher (GH #724) | Jeffrey Walton | 2019-01-28 | 1 | -48/+50 |
| | |||||
* | Remove /openmp from cryptest.nmake | Jeffrey Walton | 2019-01-22 | 1 | -1/+1 |
| | | | | This has cross-pollinated twice in two days | ||||
* | Use #pragma omp simd for OpenMP 4.0 compilers (GH #787) | Jeffrey Walton | 2019-01-22 | 1 | -1/+1 |
| | | | | Crap... It is OpenMP 4.0, not 3.0 | ||||
* | Remove /openmp from cryptest.nmake | Jeffrey Walton | 2019-01-21 | 1 | -1/+1 |
| | |||||
* | Clear unused variable warning under Visual Studio | Jeffrey Walton | 2019-01-20 | 1 | -1/+1 |
| | |||||
* | Remove /openmp from cryptest.nmake | Jeffrey Walton | 2019-01-20 | 1 | -1/+1 |
| | |||||
* | Fix compile under MSVC | Jeffrey Walton | 2019-01-20 | 1 | -1/+1 |
| | |||||
* | Use OpenMP 2.0 for MSC compilers (GH #787) | Jeffrey Walton | 2019-01-20 | 1 | -0/+1 |
| | |||||
* | Use carryless multiplies for NIST b233 and k233 curves (GH #783, PR #784) | Jeffrey Walton | 2019-01-16 | 1 | -4/+4 |
| | | | Use carryless multiplies for NIST b233 and k233 curves. | ||||
* | Update distclean rule in cryptest.nmake | Jeffrey Walton | 2019-01-09 | 1 | -1/+3 |
| | |||||
* | Update distclean rule in cryptest.nmake | Jeffrey Walton | 2019-01-09 | 1 | -4/+2 |
| | |||||
* | Add missing dependency to cryptest.nmake | Jeffrey Walton | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | Revert cryptest.nmake cross-pollination | Jeffrey Walton | 2019-01-08 | 1 | -1/+0 |
| | |||||
* | Clear early GCC warning | Jeffrey Walton | 2019-01-08 | 1 | -0/+1 |
| | |||||
* | Add distclean recipe to cryptest.nmake | Jeffrey Walton | 2019-01-07 | 1 | -4/+33 |
| | |||||
* | Update comments | Jeffrey Walton | 2019-01-07 | 1 | -2/+4 |
| | |||||
* | Add dlltest.cpp to cryptest.nmake | Jeffrey Walton | 2019-01-07 | 1 | -4/+2 |
| | |||||
* | Update cryptest.nmake script | Jeffrey Walton | 2019-01-07 | 1 | -14/+45 |
| | |||||
* | Update cryptest.nmake script | Jeffrey Walton | 2019-01-07 | 1 | -0/+6 |
| | |||||
* | Add DLL testing code to cryptest.nmake | Jeffrey Walton | 2019-01-07 | 1 | -13/+26 |
| | |||||
* | Add /OUT option for dumpbin | Jeffrey Walton | 2019-01-06 | 1 | -2/+3 |
| | |||||
* | Update recipes for Nmake file | Jeffrey Walton | 2019-01-06 | 1 | -0/+20 |
| | |||||
* | Fix unintentional check-in of nmake file | Jeffrey Walton | 2019-01-04 | 1 | -3/+2 |
| | |||||
* | Fix IsDebuggerPresent guard for ARM64 (GH #776) | Jeffrey Walton | 2019-01-04 | 1 | -2/+2 |
| | |||||
* | Add comments on potential environment misdetection | Jeffrey Walton | 2018-12-28 | 1 | -0/+7 |
| | |||||
* | Add Moon's curve25519 using SSE2 (GH #761) | Jeffrey Walton | 2018-12-13 | 1 | -4/+4 |
| | | | | Moon's code is very fast. In fact it is so fast it broke our benchmarks. Moon's code registers 0.00 milliseconds and 0.00 megacycles/operation. | ||||
* | Add Langley's curve25519 (GH #761, PR# 762) | Jeffrey Walton | 2018-12-11 | 1 | -42/+46 |
| | |||||
* | Add Power9 Random Number Generator support (GH #747, PR #748) | Jeffrey Walton | 2018-11-28 | 1 | -4/+4 |
| | | | | This adds the missing changes to the Windows source files | ||||
* | Add /arch:AVX for chacha_avx.cpp to Nmake recipe | Jeffrey Walton | 2018-11-10 | 1 | -0/+7 |
| | |||||
* | Rename files with dashes to underscores | Jeffrey Walton | 2018-11-10 | 1 | -16/+16 |
| | | | | Also see https://github.com/weidai11/cryptopp/issues/736 | ||||
* | Rename files with dashes to underscores | Jeffrey Walton | 2018-11-10 | 1 | -16/+16 |
| | | | | Also see https://github.com/weidai11/cryptopp/issues/736 | ||||
* | Add ChaCha AVX2 implementation (GH #735) | Jeffrey Walton | 2018-11-08 | 1 | -4/+4 |
| | |||||
* | Split Blake2 SIMD files into blake2s-simd.cpp and blake2b-simd.cpp (GH #729, ↵ | Jeffrey Walton | 2018-11-02 | 1 | -4/+4 |
| | | | | | | GH #731) The split was required for Blake2b and Power8; Blake2s only requires Power7 | ||||
* | Add ChaCha SSE2 implementation | Jeffrey Walton | 2018-10-23 | 1 | -2/+2 |
| | | | | | | | | Thanks to Jack Lloyd and Botan for allowing us to use the implementation. The numbers for SSE2 are very good. When compared with Salsa20 ASM the results are: * Salsa20 2.55 cpb; ChaCha/20 2.90 cpb * Salsa20/12 1.61 cpb; ChaCha/12 1.90 cpb * Salsa20/8 1.34 cpb; ChaCha/8 1.5 cpb | ||||
* | Break-up long lines in cryptest.nmake | Jeffrey Walton | 2018-08-27 | 1 | -33/+101 |
| | |||||
* | Fix compile using Nmake | Jeffrey Walton | 2018-08-23 | 1 | -2/+2 |
| | | | | LNK2019: unresolved external symbol CryptoPP::KeccakF1600(...) | ||||
* | Add /DEBUG to cryptest.nmake linker options | Jeffrey Walton | 2018-08-20 | 1 | -4/+4 |
| | |||||
* | Fix linking rdrand.obj twice on Windows using cryptest.nmake | Jeffrey Walton | 2018-08-19 | 1 | -2/+2 |
| | |||||
* | Remove Thread and Socket classes (GH #208, PR #703) | Jeffrey Walton | 2018-08-17 | 1 | -7/+5 |
| | | | Also see https://groups.google.com/forum/#!topic/cryptopp-users/5btwLoxXXD4. | ||||
* | Split simon-simd.cpp and speck-simd.cpp into separate source files | Jeffrey Walton | 2018-08-15 | 1 | -2/+2 |
| | | | | SIMON-64 and SIMON-128 have different ISA requirements. The same applies to SPECK-64 and SPECK-128. GCC generated code that resulted in a SIGILL due to the ISA differences on a down level machine. The instructions was a mtfprwz from POWER8. It was prsent in a function prologue on a POWER7 machine. | ||||
* | Refactor validat5.cpp and validat6.cpp | Jeffrey Walton | 2018-07-29 | 1 | -2/+2 |
| | | | | Also see https://groups.google.com/forum/#\!topic/cryptopp-users/j_aQj6r-PoI | ||||
* | Split validat*.cpp source files | Jeffrey Walton | 2018-07-28 | 1 | -2/+2 |
| | | | | Also see https://groups.google.com/forum/#\!topic/cryptopp-users/j_aQj6r-PoI | ||||
* | Split regtest2.cpp into two files | Jeffrey Walton | 2018-07-27 | 1 | -2/+2 |
| | | | | Rename regtest3.cpp to regtest4.cpp. Split regtest2.cpp into regtest2.cpp and regtest3.cpp | ||||
* | Split bench1.cpp into two files | Jeffrey Walton | 2018-07-27 | 1 | -2/+2 |
| | | | | Renamed bench2.cpp to bench3.cpp. Split bench1.cpp into bench1.cpp and bench2.cpp | ||||
* | Add AES-NI accelerated SM4 encryption (GH #540) | Jeffrey Walton | 2018-07-13 | 1 | -2/+2 |
| | | | | Thanks to Markku-Juhani Olavi Saarinen for the code. Also see https://github.com/mjosaarinen/sm4ni | ||||
* | Add HC-256 stream cipher (GH #680) | Jeffrey Walton | 2018-07-05 | 1 | -2/+2 |
| | |||||
* | Add HC-128 stream cipher (GH #679) | Jeffrey Walton | 2018-07-05 | 1 | -2/+2 |
| |