diff options
author | lloyd <[email protected]> | 2008-09-28 17:42:51 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-28 17:42:51 +0000 |
commit | b80031b5b58c309fb6dd77d23ac706360a60850c (patch) | |
tree | feace348f9940ecf257fb02bbb1aa5b4e6d2d32b /modules/pk_pad/emsa_raw | |
parent | d84014e4b717da0618fc2f4c85dd1ef41ac6d0fa (diff) |
Oops, add unknown modinfos and headers
Diffstat (limited to 'modules/pk_pad/emsa_raw')
-rw-r--r-- | modules/pk_pad/emsa_raw/emsa_raw.h | 32 | ||||
-rw-r--r-- | modules/pk_pad/emsa_raw/modinfo.txt | 10 |
2 files changed, 42 insertions, 0 deletions
diff --git a/modules/pk_pad/emsa_raw/emsa_raw.h b/modules/pk_pad/emsa_raw/emsa_raw.h new file mode 100644 index 000000000..a9e21d0e0 --- /dev/null +++ b/modules/pk_pad/emsa_raw/emsa_raw.h @@ -0,0 +1,32 @@ +/************************************************* +* EMSA-Raw Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_EMSA_RAW_H__ +#define BOTAN_EMSA_RAW_H__ + +#include <botan/pk_util.h> + +namespace Botan { + +/************************************************* +* EMSA-Raw * +*************************************************/ +class BOTAN_DLL EMSA_Raw : public EMSA + { + private: + void update(const byte[], u32bit); + SecureVector<byte> raw_data(); + + SecureVector<byte> encoding_of(const MemoryRegion<byte>&, u32bit, + RandomNumberGenerator&); + bool verify(const MemoryRegion<byte>&, const MemoryRegion<byte>&, + u32bit) throw(); + + SecureVector<byte> message; + }; + +} + +#endif diff --git a/modules/pk_pad/emsa_raw/modinfo.txt b/modules/pk_pad/emsa_raw/modinfo.txt new file mode 100644 index 000000000..2a88d10fa --- /dev/null +++ b/modules/pk_pad/emsa_raw/modinfo.txt @@ -0,0 +1,10 @@ +realname "EMSA-Raw" + +define EMSA_RAW + +load_on auto + +<add> +emsa_raw.h +emsa_raw.cpp +</add> |