taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 6071757faf41547143a74e39e7d73a3897e701bf
parent e02109a31627919a7e01c8e0965099f6467c6174
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date:   Tue, 23 Dec 2025 10:32:11 +0900

make codespell happy

Diffstat:
Mpackages/taler-util/src/taler-crypto.ts | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/taler-util/src/taler-crypto.ts b/packages/taler-util/src/taler-crypto.ts @@ -2180,11 +2180,11 @@ export function chacha20_ietf_xor( export function chacha20_ietf( - clen: number, + outBytes: number, key: Uint8Array, nonce: Uint8Array) : Uint8Array { var bytesWritten = 0; - const m = Array<number>(clen).fill(0); + const m = Array<number>(outBytes).fill(0); const out = new Uint8Array(m.length); const sigma: number[] = [0x61707865, 0x3320646e, 0x79622d32, 0x6b206574]; const keybytes = [