aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/elgamal
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-09 00:47:58 +0000
committerlloyd <[email protected]>2010-03-09 00:47:58 +0000
commitc029a2dc6afa08ad70ae464ef80c81397e19bf20 (patch)
tree45e929a0002d9b49d75ec5378ab4e69c8fcea511 /src/pubkey/elgamal
parent7833428ae736a0eec9a8af1b58837fca960159d3 (diff)
Use preexisting powermod precomputations for setting up blinders
Diffstat (limited to 'src/pubkey/elgamal')
-rw-r--r--src/pubkey/elgamal/elgamal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/elgamal/elgamal.cpp b/src/pubkey/elgamal/elgamal.cpp
index b2ffe36f3..f55aeaa4c 100644
--- a/src/pubkey/elgamal/elgamal.cpp
+++ b/src/pubkey/elgamal/elgamal.cpp
@@ -119,7 +119,7 @@ ElGamal_Decryption_Operation::ElGamal_Decryption_Operation(const ElGamal_Private
mod_p = Modular_Reducer(p);
BigInt k = Blinder::choose_nonce(key.get_x(), p);
- blinder = Blinder(k, power_mod(k, key.get_x(), p), p);
+ blinder = Blinder(k, powermod_x_p(k), p);
}
SecureVector<byte>