aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_hash_id.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-05 11:27:28 -0400
committerJack Lloyd <[email protected]>2017-10-05 11:27:28 -0400
commit91430f402a1ccd23f5c8fea6ee25b12628dc3700 (patch)
tree99132818cba51729d517700e126261997afab716 /src/tests/test_hash_id.cpp
parent0cf2e5491e8f7297face6d011752969100e725ab (diff)
Correct the SHA-3 PKCSv1.5 IDs
Thanks to @noloader for pointing me at draft-jivsov-openpgp-sha3-01 which has the correct values. Adds a test so this can't happen again.
Diffstat (limited to 'src/tests/test_hash_id.cpp')
-rw-r--r--src/tests/test_hash_id.cpp94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/tests/test_hash_id.cpp b/src/tests/test_hash_id.cpp
new file mode 100644
index 000000000..9a8565a16
--- /dev/null
+++ b/src/tests/test_hash_id.cpp
@@ -0,0 +1,94 @@
+/*
+* (C) 2017 Jack Lloyd
+*
+* Botan is released under the Simplified BSD License (see license.txt)
+*/
+
+#include "tests.h"
+
+#if defined(BOTAN_HAS_HASH_ID) && defined(BOTAN_HAS_ASN1)
+ #include <botan/hash_id.h>
+ #include <botan/der_enc.h>
+ #include <botan/alg_id.h>
+ #include <botan/oids.h>
+#endif
+
+namespace Botan_Tests {
+
+#if defined(BOTAN_HAS_HASH_ID) && defined(BOTAN_HAS_ASN1)
+
+class PKCS_HashID_Test : public Test
+ {
+ public:
+ std::vector<Test::Result> run() override
+ {
+ const std::vector<std::pair<std::string,size_t>> hash_id_fns = {
+ {"MD5", 16},
+ {"RIPEMD-160", 20},
+ {"SHA-160", 20},
+ {"SHA-224", 28},
+ {"SHA-256", 32},
+ {"SHA-384", 48},
+ {"SHA-512", 64},
+ {"SHA-512-256", 32},
+ {"SHA-3(224)", 28},
+ {"SHA-3(256)", 32},
+ {"SHA-3(384)", 48},
+ {"SHA-3(512)", 64},
+ {"SM3", 32},
+ {"Tiger(24,3)", 24}
+ };
+
+ std::vector<Test::Result> results;
+
+ for(auto hash_info : hash_id_fns)
+ {
+ const std::string hash_fn = hash_info.first;
+ const size_t hash_len = hash_info.second;
+
+ Test::Result result("PKCS hash id for " + hash_fn);
+
+ try
+ {
+ const std::vector<uint8_t> pkcs_id = Botan::pkcs_hash_id(hash_fn);
+
+ const Botan::OID oid = Botan::OIDS::lookup(hash_fn);
+ const Botan::AlgorithmIdentifier alg(oid, Botan::AlgorithmIdentifier::USE_NULL_PARAM);
+ const std::vector<uint8_t> dummy_hash(hash_len);
+
+ Botan::DER_Encoder der;
+ der.start_cons(Botan::SEQUENCE).encode(alg).encode(dummy_hash, Botan::OCTET_STRING).end_cons();
+ const std::vector<uint8_t> bits = der.get_contents_unlocked();
+
+ result.test_eq("Dummy hash is expected size", bits.size() - pkcs_id.size(), dummy_hash.size());
+
+ for(size_t i = pkcs_id.size(); i != bits.size(); ++i)
+ {
+ if(bits[i] != 0)
+ {
+ result.test_failure("Dummy hash had nonzero value");
+ break;
+ }
+ }
+
+ std::vector<uint8_t> encoded_id(bits.begin(), bits.begin() + pkcs_id.size());
+
+ result.test_eq("Encoded ID matches hardcoded", encoded_id, pkcs_id);
+
+ }
+ catch(Botan::Exception& e)
+ {
+ result.test_failure(e.what());
+ }
+
+ results.push_back(result);
+ }
+
+ return results;
+ }
+ };
+
+BOTAN_REGISTER_TEST("pkcs_hash_id", PKCS_HashID_Test);
+#endif
+
+}