From 83a015b940552db80eb7bd5917ede99dde2e5b0d Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Sun, 15 Sep 2024 06:20:30 -0600 Subject: [PATCH] crypto.scrypt: add missing comment of source for test vector (#22222) --- vlib/crypto/scrypt/scrypt_test.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vlib/crypto/scrypt/scrypt_test.v b/vlib/crypto/scrypt/scrypt_test.v index a1020b5da6..1c5c9dcd15 100644 --- a/vlib/crypto/scrypt/scrypt_test.v +++ b/vlib/crypto/scrypt/scrypt_test.v @@ -203,6 +203,9 @@ struct ScryptTestData { expected_result []u8 } +// The scrypt test vectors are taken from +// [RFC7914](https://datatracker.ietf.org/doc/html/rfc7914#section-12) +// section 12. const scrypt_test_cases = [ ScryptTestData{ name: 'test case 1'