aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/crypto/talerCrypto.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2020-12-07 15:59:37 +0100
committerFlorian Dold <florian@dold.me>2020-12-07 15:59:37 +0100
commitbbd65fc4b78bf4b61142417fda44d43d955cb28d (patch)
tree8c342e2faa969efb6f99ccb122f9e0d88ceea824 /packages/taler-wallet-core/src/crypto/talerCrypto.ts
parentd1f03863427b2a8b1b397cb06fa0c03a33e8fa76 (diff)
downloadwallet-core-bbd65fc4b78bf4b61142417fda44d43d955cb28d.tar.xz
restore blind signing compatibility with exchange
Diffstat (limited to 'packages/taler-wallet-core/src/crypto/talerCrypto.ts')
-rw-r--r--packages/taler-wallet-core/src/crypto/talerCrypto.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/crypto/talerCrypto.ts b/packages/taler-wallet-core/src/crypto/talerCrypto.ts
index 3ce5491c1..8713fc965 100644
--- a/packages/taler-wallet-core/src/crypto/talerCrypto.ts
+++ b/packages/taler-wallet-core/src/crypto/talerCrypto.ts
@@ -219,7 +219,7 @@ function rsaBlindingKeyDerive(
rsaPub: RsaPub,
bks: Uint8Array,
): bigint.BigInteger {
- const salt = stringToBytes("Blinding KDF extrator HMAC key");
+ const salt = stringToBytes("Blinding KDF extractor HMAC key");
const info = stringToBytes("Blinding KDF");
return kdfMod(rsaPub.N, bks, salt, info);
}