summaryrefslogtreecommitdiff
path: root/nss-tool
diff options
context:
space:
mode:
authorFranziskus Kiefer <franziskuskiefer@gmail.com>2020-01-14 16:01:05 +0000
committerFranziskus Kiefer <franziskuskiefer@gmail.com>2020-01-14 16:01:05 +0000
commit5e84c809a385e12d20f908eeb21c42feba55ebe0 (patch)
treea530482a9777e8ac34fe41b273ea8265fd5f0759 /nss-tool
parent77c571d3d987af2088bc10bf314c141e54639ff4 (diff)
downloadnss-hg-5e84c809a385e12d20f908eeb21c42feba55ebe0.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')
-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");