diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/openssl/openssl_pk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/openssl/openssl_pk.cpp b/src/engine/openssl/openssl_pk.cpp index 61bafef3c..38bcaf260 100644 --- a/src/engine/openssl/openssl_pk.cpp +++ b/src/engine/openssl/openssl_pk.cpp @@ -192,7 +192,7 @@ class OSSL_RSA_Private_Operation : public PK_Ops::Signature, u32bit max_input_bits() const { return (n_bits - 1); } SecureVector<byte> sign(const byte msg[], u32bit msg_len, - RandomNumberGenerator& rng) + RandomNumberGenerator&) { BigInt m(msg, msg_len); BigInt x = private_op(m); |