aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/crypto/talerCrypto.ts
diff options
context:
space:
mode:
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);
}