diff options
author | Florian Dold <florian@dold.me> | 2020-12-07 15:59:37 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2020-12-07 15:59:37 +0100 |
commit | bbd65fc4b78bf4b61142417fda44d43d955cb28d (patch) | |
tree | 8c342e2faa969efb6f99ccb122f9e0d88ceea824 /packages/taler-wallet-core/src/crypto/talerCrypto.ts | |
parent | d1f03863427b2a8b1b397cb06fa0c03a33e8fa76 (diff) |
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.ts | 2 |
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); } |