aboutsummaryrefslogtreecommitdiff
path: root/core/crypto
diff options
context:
space:
mode:
authorYawning Angel <yawning@schwanenlied.me>2024-10-11 02:10:02 +0900
committerYawning Angel <yawning@schwanenlied.me>2025-03-23 19:14:33 +0900
commit4c28f6d170da9f7fe29ace5e40933fba9c2f946e (patch)
tree24358623876ed37979b620db509625dbfbe581cc /core/crypto
parentf578ce3acb23bf7eb93699c5666ddc61693abbb7 (diff)
core/crypto/_aes/hw_intel: Fix comment (NFC)
Diffstat (limited to 'core/crypto')
-rw-r--r--core/crypto/_aes/hw_intel/ghash.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/crypto/_aes/hw_intel/ghash.odin b/core/crypto/_aes/hw_intel/ghash.odin
index 4320dd59b..ed89d2956 100644
--- a/core/crypto/_aes/hw_intel/ghash.odin
+++ b/core/crypto/_aes/hw_intel/ghash.odin
@@ -52,7 +52,7 @@ GHASH_STRIDE_BYTES_HW :: GHASH_STRIDE_HW * _aes.GHASH_BLOCK_SIZE
// that it is right-shifted by 1 bit. The left-shift is relatively
// inexpensive, and it can be mutualised.
//
-// Since SSE2 opcodes do not have facilities for shitfting full 128-bit
+// Since SSE2 opcodes do not have facilities for shifting full 128-bit
// values with bit precision, we have to break down values into 64-bit
// chunks. We number chunks from 0 to 3 in left to right order.