11
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 23 hours ago. based on code collected about 23 hours ago.
Jul 22, 2024 — Jul 22, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix spurious assert (GH #1279) More... about 1 year ago
Guard use of ModularSquareRoot (GH #1249) More... about 1 year ago
Clear GCC overflow warning More... about 1 year ago
chore: fix typos (#1274) More... about 1 year ago
Add OID::operator> for PEM Pack More... over 1 year ago
Update documentation More... over 1 year ago
Set MAKEJOBS in cryptest-pem.sh More... over 1 year ago
Update comments More... over 1 year ago
Validate PolynomialMod2 coefficients Thanks to Bing Shi More... over 1 year ago
Update docs Thanks to Bing Shi More... over 1 year ago
Add check for 128-bit pointers Thanks to Andy Polyakov More... over 1 year ago
Add check for 128-bit pointers Thanks to Andy Polyakov More... over 1 year ago
Add separate ASM file for XGETBV64 and CPUID64 to Visual Studio cryptdll project (GH #1240) Also see the comment in Commit 043208515799, where OgreTransporter made a comment about the deprecated cryptdll.vcxproj project. More... almost 2 years ago
Fix CPU feature detection on older Celerons More... almost 2 years ago
Try fix build on MSYS2 using Clang in CLANG64 environment (GH #1241) More Clang troubles... More... almost 2 years ago
Add separate ASM file for XGETBV64 and CPUID64 (GH #1240) This will allow us to define CRYPTOPP_DISABLE_ASM and completely avoid building x64dll.asm and x64masm.asm More... almost 2 years ago
Guard use of zip and unzip Uncovered on the newly minted GCC119, which is an AIX box. More... almost 2 years ago
Update comments for CRYPTOPP_DISABLE_ASM More... almost 2 years ago
Return 0-values for XGETBV64 and CPUID64 when CRYPTOPP_DISABLE_ASM is in effect (GH #1240) Some folks were defining CRYPTOPP_DISABLE_ASM and not building the *.asm files on WIndows. That happened to work until we refactored code for XGetBV and CpuId. More... almost 2 years ago
Prepare for Crypto++ 8.9 release More... almost 2 years ago
Fix SIMON128 when running on POWER8 and above (GH #1237) This was an Asan failure uncovered by cryptest.sh More... almost 2 years ago
Update comments More... almost 2 years ago
Clear elevated warnings in ARIA and HIGHT Related to fixes from GH #1235 and GH #1234 More... almost 2 years ago
Reduce size of working space in ARIA More... almost 2 years ago
Speedup ARIA ARIA_GSRK Now that the function is using an array of word32 for round keys, we don't need the PutWord gyrations. More... almost 2 years ago
Use SecWordBlock for ARIA round keys This may allow the compiler to optimize ARIA_GSRK. Instead of a memcpy, the memory can be used as a word32. More... almost 2 years ago
Remove shady word32* casts in ARIA More... almost 2 years ago
Fix ARIA when XOR'ing final block (GH #1235) This is another mystery to me. I do not know why unrolling the XOR into building of outBlock fixes this problem. More... almost 2 years ago
Remove ARIA SIMD code (GH #1235) ARIA SIMD code existed to perform an XOR and the end of encryption and decryption. It was a lot of work to save for the final XOR. Worse, the final XOR seemed to be causing problems as described in GH #1235. Once we unrolled the XOR and used them when building outBlock, the 1235 issue went away. More... almost 2 years ago
Add asserts to CFB_ModePolicy::SetFeedbackSize More... almost 2 years ago