diff options
author | lloyd <[email protected]> | 2008-06-27 18:00:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-27 18:00:12 +0000 |
commit | d84a769cc563aebeae3893f952cba1659562e430 (patch) | |
tree | 2096fc9aadf09df37a7707997b8663658aeea3b1 /src | |
parent | e6a5313d766829e2f5f17763d148a26d1a358c05 (diff) |
Avoid warning
Diffstat (limited to 'src')
-rw-r--r-- | src/emsa_raw.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emsa_raw.cpp b/src/emsa_raw.cpp index 4955456ff..037e22375 100644 --- a/src/emsa_raw.cpp +++ b/src/emsa_raw.cpp @@ -40,7 +40,7 @@ SecureVector<byte> EMSA_Raw::encoding_of(const MemoryRegion<byte>& msg, *************************************************/ bool EMSA_Raw::verify(const MemoryRegion<byte>& coded, const MemoryRegion<byte>& raw, - u32bit key_bits) throw() + u32bit) throw() { return (coded == raw); } |