aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-08 19:40:02 +0000
committerlloyd <[email protected]>2008-10-08 19:40:02 +0000
commitafd97edf49c9381e434f5f786c59f743a246101b (patch)
treee45ccffd6a43a9c971826e53094a888d885b0476 /src
parent4b2294731b8e48227021e57ba7f0a661a87cf5f3 (diff)
Add BSI variant of EMSA1, from InSiTo
Diffstat (limited to 'src')
-rw-r--r--src/core/libstate/get_enc.cpp12
-rw-r--r--src/pk_pad/emsa1/emsa1.h2
-rw-r--r--src/pk_pad/emsa1_bsi/emsa1_bsi.cpp27
-rw-r--r--src/pk_pad/emsa1_bsi/emsa1_bsi.h30
-rw-r--r--src/pk_pad/emsa1_bsi/info.txt14
-rw-r--r--src/pubkey/ec_dompar/ec_dompar.cpp2
6 files changed, 86 insertions, 1 deletions
diff --git a/src/core/libstate/get_enc.cpp b/src/core/libstate/get_enc.cpp
index 2459ef0a6..e42ab784e 100644
--- a/src/core/libstate/get_enc.cpp
+++ b/src/core/libstate/get_enc.cpp
@@ -16,6 +16,10 @@
#include <botan/emsa1.h>
#endif
+#if defined(BOTAN_HAS_EMSA1_BSI)
+ #include <botan/emsa1_bsi.h>
+#endif
+
#if defined(BOTAN_HAS_EMSA2)
#include <botan/emsa2.h>
#endif
@@ -86,6 +90,14 @@ EMSA* get_emsa(const std::string& algo_spec)
}
#endif
+#if defined(BOTAN_HAS_EMSA1_BSI)
+ if(emsa_name == "EMSA1_BSI")
+ {
+ if(name.size() == 2)
+ return new EMSA1_BSI(get_hash(name[1]));
+ }
+#endif
+
#if defined(BOTAN_HAS_EMSA2)
if(emsa_name == "EMSA2")
{
diff --git a/src/pk_pad/emsa1/emsa1.h b/src/pk_pad/emsa1/emsa1.h
index 2de2d325e..8a15e2bfe 100644
--- a/src/pk_pad/emsa1/emsa1.h
+++ b/src/pk_pad/emsa1/emsa1.h
@@ -18,6 +18,8 @@ class BOTAN_DLL EMSA1 : public EMSA
public:
EMSA1(HashFunction* h) : hash(h) {}
~EMSA1() { delete hash; }
+ protected:
+ const HashFunction* hash_ptr() const { return hash; }
private:
void update(const byte[], u32bit);
SecureVector<byte> raw_data();
diff --git a/src/pk_pad/emsa1_bsi/emsa1_bsi.cpp b/src/pk_pad/emsa1_bsi/emsa1_bsi.cpp
new file mode 100644
index 000000000..cc7868a1d
--- /dev/null
+++ b/src/pk_pad/emsa1_bsi/emsa1_bsi.cpp
@@ -0,0 +1,27 @@
+/*************************************************
+* EMSA1 BSI Source File *
+* (C) 1999-2008 Jack Lloyd *
+* 2008 Falko Strenzke, FlexSecure GmbH *
+*************************************************/
+
+#include <botan/emsa1_bsi.h>
+
+namespace Botan {
+
+/*************************************************
+* EMSA1 BSI Encode Operation *
+*************************************************/
+SecureVector<byte> EMSA1_BSI::encoding_of(const MemoryRegion<byte>& msg,
+ u32bit output_bits,
+ RandomNumberGenerator&)
+ {
+ if(msg.size() != hash_ptr()->OUTPUT_LENGTH)
+ throw Encoding_Error("EMSA1_BSI::encoding_of: Invalid size for input");
+
+ if(8*msg.size() <= output_bits)
+ return msg;
+
+ throw Encoding_Error("EMSA1_BSI::encoding_of: max key input size exceeded");
+ }
+
+}
diff --git a/src/pk_pad/emsa1_bsi/emsa1_bsi.h b/src/pk_pad/emsa1_bsi/emsa1_bsi.h
new file mode 100644
index 000000000..0c0745bb0
--- /dev/null
+++ b/src/pk_pad/emsa1_bsi/emsa1_bsi.h
@@ -0,0 +1,30 @@
+/*************************************************
+* EMSA1 BSI Variant Header File *
+* (C) 1999-2008 Jack Lloyd *
+* 2007 FlexSecure GmbH *
+*************************************************/
+
+#ifndef BOTAN_EMSA1_BSI_H__
+#define BOTAN_EMSA1_BSI_H__
+
+#include <botan/emsa1.h>
+
+namespace Botan {
+
+/**
+EMSA1_BSI is a variant of EMSA1 specified by the BSI. It accepts only
+hash values which are less or equal than the maximum key length. The
+implementation comes from InSiTo
+*/
+class BOTAN_DLL EMSA1_BSI : public EMSA1
+ {
+ public:
+ EMSA1_BSI(HashFunction* hash) : EMSA1(hash) {}
+ private:
+ SecureVector<byte> encoding_of(const MemoryRegion<byte>&, u32bit,
+ RandomNumberGenerator& rng);
+ };
+
+}
+
+#endif
diff --git a/src/pk_pad/emsa1_bsi/info.txt b/src/pk_pad/emsa1_bsi/info.txt
new file mode 100644
index 000000000..8a8c46abb
--- /dev/null
+++ b/src/pk_pad/emsa1_bsi/info.txt
@@ -0,0 +1,14 @@
+realname "EMSA1 (BSI variant)"
+
+define EMSA1_BSI
+
+load_on auto
+
+<requires>
+emsa1
+</requires>
+
+<add>
+emsa1_bsi.h
+emsa1_bsi.cpp
+</add>
diff --git a/src/pubkey/ec_dompar/ec_dompar.cpp b/src/pubkey/ec_dompar/ec_dompar.cpp
index 97f71a6b3..09be588ae 100644
--- a/src/pubkey/ec_dompar/ec_dompar.cpp
+++ b/src/pubkey/ec_dompar/ec_dompar.cpp
@@ -20,7 +20,7 @@ std::vector<std::string> get_standard_domain_parameter(const std::string& oid)
Version 0.3;
section 2.1.2
*/
- if(oid == "1.3.132.8") // InSiTo had '08'
+ if(oid == "1.3.132.0.8")
{
std::vector<std::string> dom_par;
dom_par.push_back("0xffffffffffffffffffffffffffffffff7fffffff"); //p