diff options
Diffstat (limited to 'src/pk_pad/emsa_raw')
-rw-r--r-- | src/pk_pad/emsa_raw/emsa_raw.cpp | 34 | ||||
-rw-r--r-- | src/pk_pad/emsa_raw/emsa_raw.h | 16 |
2 files changed, 27 insertions, 23 deletions
diff --git a/src/pk_pad/emsa_raw/emsa_raw.cpp b/src/pk_pad/emsa_raw/emsa_raw.cpp index c10bb4890..d5973ee55 100644 --- a/src/pk_pad/emsa_raw/emsa_raw.cpp +++ b/src/pk_pad/emsa_raw/emsa_raw.cpp @@ -1,23 +1,25 @@ -/************************************************* -* EMSA-Raw Source File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ +/* +* EMSA-Raw +* (C) 1999-2007 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ #include <botan/emsa_raw.h> namespace Botan { -/************************************************* -* EMSA-Raw Encode Operation * -*************************************************/ +/* +* EMSA-Raw Encode Operation +*/ void EMSA_Raw::update(const byte input[], u32bit length) { message.append(input, length); } -/************************************************* -* Return the raw (unencoded) data * -*************************************************/ +/* +* Return the raw (unencoded) data +*/ SecureVector<byte> EMSA_Raw::raw_data() { SecureVector<byte> buf = message; @@ -25,9 +27,9 @@ SecureVector<byte> EMSA_Raw::raw_data() return buf; } -/************************************************* -* EMSA-Raw Encode Operation * -*************************************************/ +/* +* EMSA-Raw Encode Operation +*/ SecureVector<byte> EMSA_Raw::encoding_of(const MemoryRegion<byte>& msg, u32bit, RandomNumberGenerator&) @@ -35,9 +37,9 @@ SecureVector<byte> EMSA_Raw::encoding_of(const MemoryRegion<byte>& msg, return msg; } -/************************************************* -* EMSA-Raw Verify Operation * -*************************************************/ +/* +* EMSA-Raw Verify Operation +*/ bool EMSA_Raw::verify(const MemoryRegion<byte>& coded, const MemoryRegion<byte>& raw, u32bit) throw() diff --git a/src/pk_pad/emsa_raw/emsa_raw.h b/src/pk_pad/emsa_raw/emsa_raw.h index df719bf27..1b0ad516e 100644 --- a/src/pk_pad/emsa_raw/emsa_raw.h +++ b/src/pk_pad/emsa_raw/emsa_raw.h @@ -1,7 +1,9 @@ -/************************************************* -* EMSA-Raw Header File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ +/* +* EMSA-Raw +* (C) 1999-2007 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ #ifndef BOTAN_EMSA_RAW_H__ #define BOTAN_EMSA_RAW_H__ @@ -10,9 +12,9 @@ namespace Botan { -/************************************************* -* EMSA-Raw * -*************************************************/ +/* +* EMSA-Raw +*/ class BOTAN_DLL EMSA_Raw : public EMSA { private: |