]> zoso.dev Git - libnemo.git/commitdiff
Document change to crypto_hash function.
authorChris Duncan <chris@zoso.dev>
Mon, 25 Nov 2024 22:25:39 +0000 (14:25 -0800)
committerChris Duncan <chris@zoso.dev>
Mon, 25 Nov 2024 22:25:39 +0000 (14:25 -0800)
src/lib/workers/nacl-nano.ts

index 8941ff59ddb94bd17069d1a610a9ddeb7d0c0adb..15e13db388106b021c7bdc536f2a75fe817010ae 100644 (file)
@@ -516,6 +516,7 @@ function pow2523(o, i) {
        for (a = 0; a < 16; a++) o[a] = c[a];\r
 }\r
 \r
+// Note: difference from TweetNaCl - BLAKE2b used to hash instead of SHA-512.\r
 function crypto_hash(out, m, n) {\r
        const input = new Uint8Array(n)\r
        for (let i = 0; i < n; ++i) {\r