diff options
author | lloyd <[email protected]> | 2008-06-10 17:20:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-10 17:20:02 +0000 |
commit | dec416d649715617e0eb66b18d69f6dbe9c308b3 (patch) | |
tree | 7ff26fe9cee0f11a15977106d985e78c01fb1e51 /src/emsa_raw.cpp | |
parent | 2aef9fa5bc25984a838a51a93ac0e918d2d1bbac (diff) |
Pass a RNG reference to the EMSA encoder functions
Diffstat (limited to 'src/emsa_raw.cpp')
-rw-r--r-- | src/emsa_raw.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emsa_raw.cpp b/src/emsa_raw.cpp index 7442a4f4f..b7ca16195 100644 --- a/src/emsa_raw.cpp +++ b/src/emsa_raw.cpp @@ -29,7 +29,8 @@ SecureVector<byte> EMSA_Raw::raw_data() * EMSA-Raw Encode Operation * *************************************************/ SecureVector<byte> EMSA_Raw::encoding_of(const MemoryRegion<byte>& msg, - u32bit) + u32bit, + RandomNumberGenerator&) { return msg; } |