From 8e4611fb745871e374db9f7770fa6007c5025d36 Mon Sep 17 00:00:00 2001 From: mo Date: Fri, 31 Jul 2026 22:35:09 +1200 Subject: [PATCH] Fix typo in constant name and a different comment --- core/crypto/argon2id/argon2id.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/crypto/argon2id/argon2id.odin b/core/crypto/argon2id/argon2id.odin index e2f5e487b..bad83238e 100644 --- a/core/crypto/argon2id/argon2id.odin +++ b/core/crypto/argon2id/argon2id.odin @@ -28,8 +28,8 @@ MIN_TAG_SIZE :: 4 MAX_TAG_SIZE :: (1 << 32) - 1 // RECOMMENDED_TAG_SIZE is the recommended tag size in bytes. -RECOMMENTED_TAG_SIZE :: 32 // 256-bits -// RECOMMENDNED_SALT_SIZE is the recommended salt size in bytes. +RECOMMENDED_TAG_SIZE :: 32 // 256-bits +// RECOMMENDED_SALT_SIZE is the recommended salt size in bytes. RECOMMENDED_SALT_SIZE :: 16 // 128-bits @(private)