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)