summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix cryptest-android.sh and cryptest-ios.sh (PR #895)Jeffrey Walton2019-10-160-0/+0
| | | The test programs were ignoring PLATFORM in the environment, and testing all platforms.
* Fix hard floats on AndroidJeffrey Walton2019-10-161-7/+2
|
* Fix cryptest-android.sh and cryptest-ios.shJeffrey Walton2019-10-163-11/+10
| | | | The test programs were ignoring PLATFORM in the environment, and testing all platforms
* Guard IS_ARMv8 for stray IS_ARM32Jeffrey Walton2019-10-161-0/+4
|
* Fix Android ARMv7a compile and link (#894)Jeffrey Walton2019-10-1610-65/+79
| | | | | | | | | | * Fix Android Aarch64 compile with XTS * Clear Shellcheck warnings * Fix Android armv7a builds * Update comments
* Update Android build numbersJeffrey Walton2019-10-162-22/+20
|
* Remove old variables from setenv-android.shJeffrey Walton2019-10-162-38/+20
|
* Cleanup setenv-ios.sh scriptJeffrey Walton2019-10-152-6/+6
| | | | Clear Shellcheck warnings
* Fix setenv-android.sh and cryptest-android.sh for NDK r19 (PR #893)Jeffrey Walton2019-10-1512-1449/+754
| | | setenv-android.sh and cryptest-android.sh are up to date for NDK r19 again.
* Compile cpu_features.c with '-x c' to avoid compile errorJeffrey Walton2019-10-151-11/+3
|
* Fix cryptest-cmake.sh URLJeffrey Walton2019-10-141-1/+1
|
* Add cryptest-pem.sh to Travis and OS XJeffrey Walton2019-10-141-6/+10
|
* Add cryptest-pem.sh to TravisJeffrey Walton2019-10-141-0/+8
|
* Add test for OpenSSL in cryptest-pem.shJeffrey Walton2019-10-143-9/+12
|
* Run make clean in test scriptsJeffrey Walton2019-10-143-1/+12
|
* Switch to cURL for downloadJeffrey Walton2019-10-143-18/+43
| | | | New versions of OS X have cURL, not Wget
* Update Automake and CMake test scriptsJeffrey Walton2019-10-142-38/+33
|
* Add cryptest-pem.sh test scriptJeffrey Walton2019-10-141-0/+90
|
* Update documentationJeffrey Walton2019-10-141-0/+19
|
* Update documentationJeffrey Walton2019-10-141-8/+29
|
* Clear unused varaible warning on PowerPCJeffrey Walton2019-10-141-1/+1
|
* Fix semicolons yet again (GH #889)Jeffrey Walton2019-10-1431-223/+220
| | | | So it looks like sed added a '\r' between the closing paren and the semi. Grepping for '^;' failed because the '\r' was considered part of the previous line, so it showed no hits. I finally had to write a C program to properly identify and fix those damn stray semicolons.
* Update documentationJeffrey Walton2019-10-141-0/+4
|
* Clear missing initializer under early GCCJeffrey Walton2019-10-141-2/+2
| | | | This created over 700 warnings when running cryptest.sh
* Add Visual Studio 2019 to AppVeyor build workerJeffrey Walton2019-10-141-1/+2
|
* Use size_type in allocator functionsJeffrey Walton2019-10-141-11/+13
|
* Cleanup asserts in SecBlockJeffrey Walton2019-10-142-17/+36
| | | | SecBlock regularly uses NULL pointers rather returning non-NULL 0-sized pointers. The asserts were moved to AlignedAllocate and UnalignedAllocate.
* Fix AIX crash in AlignedDeallocate (GH #875)Jeffrey Walton2019-10-131-4/+10
|
* Tune XTS for PowerPCJeffrey Walton2019-10-132-40/+51
|
* Make XTS mode parallelizable (GH #891)Jeffrey Walton2019-10-132-97/+91
| | | | On CoffeeLake performance increased from 3.4 cpb to 1.75 cpb. On Core2Duo performance increased from 27 cpb to 19 cpb.
* Fix semicolons in adv_simd.hJeffrey Walton2019-10-131-5/+5
| | | | Many, that sed went sideways...
* Update comments in XTSJeffrey Walton2019-10-131-13/+16
|
* Avoid calling AdvancedProcessBlocks (GH #891)Jeffrey Walton2019-10-131-5/+25
| | | | On machines without AES acceleration, like Core2Duo's, this change profits by about 6 to 8 cpb. Machines with AES acceleration are not affected
* Clear unused variable warning under GCCJeffrey Walton2019-10-131-0/+2
|
* Remove temp file in cryptest.shJeffrey Walton2019-10-132-0/+2
|
* Add section on OS X fixupsJeffrey Walton2019-10-132-20/+28
|
* Use int cast in awk expression on OS XJeffrey Walton2019-10-131-2/+2
|
* Use int cast in awk expression on OS XJeffrey Walton2019-10-131-2/+2
|
* Use int cast in awk expression on OS XJeffrey Walton2019-10-132-4/+4
|
* Update cryptest.sh for OS X 10.9Jeffrey Walton2019-10-132-0/+20
|
* Guard for runts in ProcessLastBlock (GH #891)Jeffrey Walton2019-10-131-4/+6
|
* Cleanup XTS regtest nameJeffrey Walton2019-10-131-1/+1
|
* Fix XTS GetValidKeyLength (GH #891)Jeffrey Walton2019-10-132-3/+11
|
* Update assertJeffrey Walton2019-10-131-2/+2
|
* Cleanup headers in xts.cppJeffrey Walton2019-10-131-2/+2
|
* Fix typo in Aarch64 code pathJeffrey Walton2019-10-131-1/+1
|
* Add XorBuffer wrapper function to XTS (GH #891)Jeffrey Walton2019-10-131-27/+92
| | | | XorBuffer wraps SIMD or falls back to xorbuf. The function gains 0.3 cpb to 1.5 cpb, depending on the architecture.
* Update commentsJeffrey Walton2019-10-131-481/+481
|
* Add additional test vectorJeffrey Walton2019-10-131-0/+24
| | | | This rounds them out from 499 to 500
* Reuse outLength in ProcessLastBlockJeffrey Walton2019-10-121-2/+2
|