aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-22 15:02:46 +0000
committerlloyd <[email protected]>2010-06-22 15:02:46 +0000
commitd8738d83d567ab539639bce4c0f00902c5ff3607 (patch)
treee0bef6ae96d40db619ea4abb72cdec5967447731 /src
parentd922d15103274c653bc3fc69da4a2bd83b82e0aa (diff)
Avoid unused parameter warning
Diffstat (limited to 'src')
-rw-r--r--src/engine/openssl/openssl_pk.cpp2
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);