summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-15 17:36:53 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-15 17:36:53 +0000
commitb2f2c1f2c534d20cd06aed7717b19b8ab101e254 (patch)
tree245eb257f93ee67df6f7112490a727077e5df3ee /test.cpp
parent180a6796fd546fdb4a4d26b6a3a815bca4db5645 (diff)
downloadcryptopp-b2f2c1f2c534d20cd06aed7717b19b8ab101e254.tar.gz
*** empty log message ***
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@67 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test.cpp b/test.cpp
index 640dece..63218f2 100644
--- a/test.cpp
+++ b/test.cpp
@@ -554,7 +554,6 @@ void RSASignFile(const char *privFilename, const char *messageFilename, const ch
{
FileSource privFile(privFilename, true, new HexDecoder);
RSASSA_PKCS1v15_SHA_Signer priv(privFile);
- // RSASSA_PKCS1v15_SHA_Signer ignores the rng. Use a real RNG for other signature schemes!
FileSource f(messageFilename, true, new SignerFilter(GlobalRNG(), priv, new HexEncoder(new FileSink(signatureFilename))));
}