Skip to content

Commit

Permalink
Fix the type in aarch64 AES MPULL macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
fraggerfox committed Jan 9, 2025
1 parent 5b07d41 commit 145fa40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wolfcrypt/src/cpuid.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@

if (features & CPUID_AARCH64_FEAT_AES)
cpuid_flags |= CPUID_AES;
if (features & CPUID_AARCH64_FEAT_PMULL)
if (features & CPUID_AARCH64_FEAT_AES_PMULL)
cpuid_flags |= CPUID_PMULL;
if (features & CPUID_AARCH64_FEAT_SHA256)
cpuid_flags |= CPUID_SHA256;
Expand Down

0 comments on commit 145fa40

Please sign in to comment.