summaryrefslogtreecommitdiff
path: root/rw.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-03-20 03:09:44 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-03-20 03:09:44 +0000
commit9f148107dd8c49b13839c8e3d0c26444eebeeef9 (patch)
tree98c122b6bde185f16a1bc5c01173f42d7828df77 /rw.cpp
parent3c0752b2063319fb917fcaf2144671c2f1032242 (diff)
downloadcryptopp-9f148107dd8c49b13839c8e3d0c26444eebeeef9.tar.gz
fix RW/EMSA2 standard conformance bug
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@40 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'rw.cpp')
-rw-r--r--rw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rw.cpp b/rw.cpp
index ab3fb70..16534c8 100644
--- a/rw.cpp
+++ b/rw.cpp
@@ -22,7 +22,7 @@ void EMSA2Pad::ComputeMessageRepresentative(RandomNumberGenerator &rng,
unsigned int representativeByteLength = BitsToBytes(representativeBitLength);
representative[0] = messageEmpty ? 0x4b : 0x6b;
- memset(representative+1, 0xbb, representativeByteLength-digestSize-4); // padd with 0xbb
+ memset(representative+1, 0xbb, representativeByteLength-digestSize-4); // pad with 0xbb
byte *afterP2 = representative+representativeByteLength-digestSize-3;
afterP2[0] = 0xba;
hash.Final(afterP2+1);