summaryrefslogtreecommitdiff
path: root/cpu.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-05 13:31:48 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-05 13:31:48 -0500
commitf17b172c8a1693aa86edaf70f8f741b5347f4630 (patch)
tree017f8bc9b5a0665356212fc6eaf617d86c5137f1 /cpu.h
parent443e3ee8369e0e405e97e2a3ecb6374d30012111 (diff)
downloadcryptopp-git-f17b172c8a1693aa86edaf70f8f741b5347f4630.tar.gz
Update documentations
Diffstat (limited to 'cpu.h')
-rw-r--r--cpu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpu.h b/cpu.h
index 75f39efe..3da38bd6 100644
--- a/cpu.h
+++ b/cpu.h
@@ -621,10 +621,10 @@ inline bool HasSHA512()
/// \brief Determine if an ARM processor has SM3 available
/// \return true if the hardware is capable of SM3 at runtime, false otherwise.
-/// \details SM3 is part of the ARMv8.4 Crypto extensions on Aarch32 and Aarch64. They
+/// \details SM3 is part of the ARMv8.2 Crypto extensions on Aarch32 and Aarch64. They
/// are accessed using ARM C Language Extensions 2.0 (ACLE 2.0).
/// \details Runtime support requires compile time support. When compiling with GCC, you
-/// may need to compile with <tt>-march=armv8.4-a+crypto</tt>; while Apple requires
+/// may need to compile with <tt>-march=armv8.2-a+crypto</tt>; while Apple requires
/// <tt>-arch arm64</tt>. Also see ARM's <tt>__ARM_FEATURE_CRYPTO</tt> preprocessor macro.
/// \since Crypto++ 8.0
/// \note This function is only available on Aarch32 and Aarch64 platforms
@@ -641,10 +641,10 @@ inline bool HasSM3()
/// \brief Determine if an ARM processor has SM4 available
/// \return true if the hardware is capable of SM4 at runtime, false otherwise.
-/// \details SM4 is part of the ARMv8.4 Crypto extensions on Aarch32 and Aarch64. They
+/// \details SM4 is part of the ARMv8.2 Crypto extensions on Aarch32 and Aarch64. They
/// are accessed using ARM C Language Extensions 2.0 (ACLE 2.0).
/// \details Runtime support requires compile time support. When compiling with GCC, you
-/// may need to compile with <tt>-march=armv8.4-a+crypto</tt>; while Apple requires
+/// may need to compile with <tt>-march=armv8.2-a+crypto</tt>; while Apple requires
/// <tt>-arch arm64</tt>. Also see ARM's <tt>__ARM_FEATURE_CRYPTO</tt> preprocessor macro.
/// \since Crypto++ 8.0
/// \note This function is only available on Aarch32 and Aarch64 platforms