diff options
Diffstat (limited to 'security/nss/nss-tool/hw-support.c')
-rw-r--r-- | security/nss/nss-tool/hw-support.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/nss/nss-tool/hw-support.c b/security/nss/nss-tool/hw-support.c index 0aa097ffc..87d652c3a 100644 --- a/security/nss/nss-tool/hw-support.c +++ b/security/nss/nss-tool/hw-support.c @@ -22,8 +22,12 @@ int main(int argc, char const *argv[]) { #if defined(NSS_X86_OR_X64) printf("\tAES-NI \t%s supported\n", aesni_support() ? "" : "not"); printf("\tPCLMUL \t%s supported\n", clmul_support() ? "" : "not"); + printf("\tSHA \t%s supported\n", sha_support() ? "" : "not"); printf("\tAVX \t%s supported\n", avx_support() ? "" : "not"); + printf("\tAVX2 \t%s supported\n", avx2_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"); |