summaryrefslogtreecommitdiff
path: root/nss-tool/hw-support.c
diff options
context:
space:
mode:
authorFranziskus Kiefer <franziskuskiefer@gmail.com>2019-12-18 18:03:47 +0000
committerFranziskus Kiefer <franziskuskiefer@gmail.com>2019-12-18 18:03:47 +0000
commit68b1199d47ed97fc3f9e6c7802db1ebcf1b061dc (patch)
treee52cb250fd26ec986d1c57ebd128decf0aeea28d /nss-tool/hw-support.c
parentc14ffa8ce439d8c9c40e97639ae895a0de5a7b65 (diff)
downloadnss-hg-68b1199d47ed97fc3f9e6c7802db1ebcf1b061dc.tar.gz
Bug 1574643 - NSS changes for haclv2 r=jcj,kjacobs
This patch contains the changes in NSS, necessary to pick up HACL*v2 in D55413. It has a couple of TODOs: * The chacha20 saw verification fails for some reason; it's disabled pending Bug 1604130. * The hacl task on CI requires Bug 1593647 to get fixed. Depends on D55413. Differential Revision: https://phabricator.services.mozilla.com/D55414
Diffstat (limited to 'nss-tool/hw-support.c')
-rw-r--r--nss-tool/hw-support.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nss-tool/hw-support.c b/nss-tool/hw-support.c
index 0aa097ffc..561064c17 100644
--- a/nss-tool/hw-support.c
+++ b/nss-tool/hw-support.c
@@ -24,6 +24,8 @@ int main(int argc, char const *argv[]) {
printf("\tPCLMUL \t%s supported\n", clmul_support() ? "" : "not");
printf("\tAVX \t%s supported\n", avx_support() ? "" : "not");
printf("\tSSSE3 \t%s supported\n", ssse3_support() ? "" : "not");
+ printf("\tSSE4.1 \t%s supported\n", sse4_1_support() ? "" : "not");
+ printf("\tSSE4.2 \t%s supported\n", sse4_2_support() ? "" : "not");
#elif defined(__aarch64__) || defined(__arm__)
printf("\tNEON \t%s supported\n", arm_neon_support() ? "" : "not");
printf("\tAES \t%s supported\n", arm_aes_support() ? "" : "not");