summaryrefslogtreecommitdiff
path: root/Readme.txt
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-15 08:35:14 -0400
committerGitHub <noreply@github.com>2018-07-15 08:35:14 -0400
commit4e3a1ea962d8f8cc58b97d2dd59554479a2b2db9 (patch)
tree8671ea037c90d6c316d83a1b9e5fca5c9b1e14e2 /Readme.txt
parent2600f6dcc2c7adc001959309bb944384f352e111 (diff)
downloadcryptopp-git-4e3a1ea962d8f8cc58b97d2dd59554479a2b2db9.tar.gz
Add ARMv8.4 cpu feature detection support (GH #685) (#687)
This PR adds ARMv8.4 cpu feature detection support. Previously we only needed ARMv8.1 and things were much easier. For example, ARMv8.1 `__ARM_FEATURE_CRYPTO` meant PMULL, AES, SHA-1 and SHA-256 were available. ARMv8.4 `__ARM_FEATURE_CRYPTO` means PMULL, AES, SHA-1, SHA-256, SHA-512, SHA-3, SM3 and SM4 are available. We still use the same pattern as before. We make something available based on compiler version and/or preprocessor macros. But this time around we had to tighten things up a bit to ensure ARMv8.4 did not cross-pollinate down into ARMv8.1. ARMv8.4 is largely untested at the moment. There is no hardware in the field and CI lacks QEMU with the relevant patches/support. We will probably have to revisit some of this stuff in the future. Since this update applies to ARM gadgets we took the time to expand Android and iOS testing on Travis. Travis now tests more platforms, and includes Autotools and CMake builds, too.
Diffstat (limited to 'Readme.txt')
-rw-r--r--Readme.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 8967f568..b746cef5 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -407,3 +407,4 @@ June 2015 - Changing of the guard. Wei Dai turned the library over to the
still provides guidance when we have questions.
Originally written by Wei Dai, maintained by the Crypto++ Project
+