summaryrefslogtreecommitdiff
path: root/cryptlib.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-04-22 00:12:41 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-04-22 00:12:41 +0000
commit2929d031b1a1ddf2dddde635d0ff7d497fa9f564 (patch)
tree8733a63fcf68138da6499dd586934f7a8c472316 /cryptlib.h
parentff83e8b4651dbde245f089a0d5dc3e97e490bdf9 (diff)
downloadcryptopp-2929d031b1a1ddf2dddde635d0ff7d497fa9f564.tar.gz
remove default NullRNG() for signing
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@61 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'cryptlib.h')
-rw-r--r--cryptlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptlib.h b/cryptlib.h
index 31e32e8..bdb281d 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -1258,7 +1258,7 @@ class PK_Signer : virtual public PK_SignatureScheme, public PrivateKeyAlgorithm
{
public:
//! create a new HashTransformation to accumulate the message to be signed
- virtual PK_MessageAccumulator * NewSignatureAccumulator(RandomNumberGenerator &rng = NullRNG()) const =0;
+ virtual PK_MessageAccumulator * NewSignatureAccumulator(RandomNumberGenerator &rng) const =0;
virtual void InputRecoverableMessage(PK_MessageAccumulator &messageAccumulator, const byte *recoverableMessage, unsigned int recoverableMessageLength) const =0;