diff options
author | lloyd <[email protected]> | 2014-01-10 23:07:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-10 23:07:16 +0000 |
commit | ad6555f522ae16f6284e8dafa02f630b88bcf289 (patch) | |
tree | bd63c51dbeab75eb0f90c72589bc922141237056 /src/tests/test_gost_3410.cpp | |
parent | 6894dca64c04936d07048c0e8cbf7e25858548c3 (diff) |
Split up docs into the reference manual, the website, and everything else.
Add `website` target to makefile.
Some progress towards fixing minimized builds.
TLS now hard requires ECDSA and GCM since otherwise a minimized build
has only insecure options.
Remove boost_thread dependency in command line tool
Diffstat (limited to 'src/tests/test_gost_3410.cpp')
-rw-r--r-- | src/tests/test_gost_3410.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/tests/test_gost_3410.cpp b/src/tests/test_gost_3410.cpp new file mode 100644 index 000000000..4cd43a027 --- /dev/null +++ b/src/tests/test_gost_3410.cpp @@ -0,0 +1,55 @@ +#include "tests.h" +#include "test_pubkey.h" + +#include <botan/auto_rng.h> +#include <botan/pubkey.h> +#include <botan/gost_3410.h> +#include <botan/oids.h> +#include <botan/hex.h> +#include <iostream> +#include <fstream> + +using namespace Botan; + +namespace { + +size_t gost_verify(const std::string& group_id, + const std::string& x, + const std::string& hash, + const std::string& msg, + const std::string& signature) + { + AutoSeeded_RNG rng; + + EC_Group group(OIDS::lookup(group_id)); + PointGFp public_point = OS2ECP(hex_decode(x), group.get_curve()); + + GOST_3410_PublicKey gost(group, public_point); + + const std::string padding = "EMSA1(" + hash + ")"; + + PK_Verifier v(gost, padding); + + if(!v.verify_message(hex_decode(msg), hex_decode(signature))) + return 1; + + return 0; + } + +} + +size_t test_gost_3410() + { + std::ifstream ecdsa_sig(PK_TEST_DATA_DIR "/gost_3410.vec"); + + size_t fails = 0; + + fails += run_tests_bb(ecdsa_sig, "GOST-34.10 Signature", "Signature", true, + [](std::map<std::string, std::string> m) -> size_t + { + return gost_verify(m["Group"], m["Pubkey"], m["Hash"], m["Msg"], m["Signature"]); + }); + + return fails; + } + |