]> zoso.dev Git - libnemo.git/commitdiff
Rename hash functions to drop in BLAKE2b for nano.
authorChris Duncan <chris@zoso.dev>
Mon, 25 Nov 2024 06:04:33 +0000 (22:04 -0800)
committerChris Duncan <chris@zoso.dev>
Mon, 25 Nov 2024 06:04:33 +0000 (22:04 -0800)
src/lib/workers/nano25519.ts

index a31425f9da78f44b2181616585f9bb37a39f3454..4a1de7810ea30e2c1bd836422abf5b66f1b49d90 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-FileCopyrightText: 2024 Chris Duncan <chris@zoso.dev>\r
 // SPDX-License-Identifier: GPL-3.0-or-later\r
-\r
+//@ts-nocheck\r
 import blake2b from 'blake2b'\r
 \r
        'use strict';\r
@@ -1292,7 +1292,7 @@ import blake2b from 'blake2b'
                return n;\r
        }\r
 \r
-       function crypto_hash(out, m, n) {\r
+       function crypto_hash_sha512(out, m, n) {\r
                var hh = new Int32Array(8),\r
                                hl = new Int32Array(8),\r
                                x = new Uint8Array(256),\r
@@ -1332,7 +1332,7 @@ import blake2b from 'blake2b'
                return 0;\r
        }\r
 \r
-       function crypto_hash_blake2b(out, m, n) {\r
+       function crypto_hash(out, m, n) {\r
                const input = new Uint8Array(n)\r
                for (let i = 0; i < n; ++i) {\r
                        input[i] = m[i]\r