taler-typescript-core

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

commit 65911bbc5e2cc4d3810eece005355311b9bb893f
parent 2688ad89f53bdd41963b9714c27e75a4e0b9525b
Author: Özgür Kesim <oec@codeblau.de>
Date:   Tue, 29 Apr 2025 12:32:17 +0200

[crypto:edx25519] harmonize derivation with GNUNET

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 @@ -1238,9 +1238,9 @@ export namespace Edx25519 { ): Promise<OpaqueData> { const res = kdfKw({ outputLength: 64, - salt: seed, ikm: pub, - info: stringToBytes("edx25519-derivation"), + salt: stringToBytes("edx25519-derivation"), + info: seed, }); return res;