]> zoso.dev Git - libnemo.git/commitdiff
Remove debug statements.
authorChris Duncan <chris@zoso.dev>
Wed, 27 Nov 2024 13:54:20 +0000 (05:54 -0800)
committerChris Duncan <chris@zoso.dev>
Wed, 27 Nov 2024 13:54:20 +0000 (05:54 -0800)
src/lib/blake2b.ts
src/lib/workers/ckdBip44.ts
src/lib/workers/ckdBlake2b.ts

index bfcde1f0861663155f0d74d23eccb6b9434c6e67..47a563746809aa31b3237a6b4883e443f61df77e 100644 (file)
@@ -206,8 +206,6 @@ function blake2b (outlen: number, key?: Uint8Array, salt?: Uint8Array, personal?
        }
 
        const update = function (input: Uint8Array) {
-               console.log(`this: ${this}`)
-               console.dir(this)
                if (!(input instanceof Uint8Array))
                        throw new TypeError(`input must be Uint8Array or Buffer`)
                blake2bUpdate(this, input)
index 7eaf9c10296fa85f9bcfe7e3d2cb5463ef5a22f9..47f94c2a3b5362aef5985d62db39ec022633bac3 100644 (file)
@@ -29,7 +29,6 @@ async function fn () {
        * @returns Private child key for the account
        */
        async function nanoCKD (seed: string, index: number): Promise<string> {
-               console.log(`seed: ${seed}; index: ${index}`)
                if (seed.length < 32 || seed.length > 128) {
                        throw new RangeError(`Invalid seed length`)
                }
index c8e277b6dec34e7c6bff33d254b6417ea38f3f02..345380273495142ed8092584a166c5d2dd56d163 100644 (file)
@@ -6,7 +6,6 @@ async function fn () {
        * Listens for messages from a calling function.
        */
        addEventListener('message', (message) => {
-               console.log('message received')
                const { seed, index, blake2b } = message.data ?? message
                ckdBlake2b(seed, index, blake2b).then(key => postMessage({ index, key }))
        })
@@ -19,7 +18,6 @@ async function fn () {
        */
        async function ckdBlake2b (seed: string, index: number, b2b: any): Promise<string> {
                const blake2b = Function(`return ${b2b}`)()
-               console.log(blake2b)
                const indexHex = index.toString(16).padStart(8, '0').toUpperCase()
                const inputHex = `${seed}${indexHex}`.padStart(72, '0')
                const inputArray = (inputHex.match(/.{1,2}/g) ?? []).map(h => parseInt(h, 16))