summaryrefslogtreecommitdiff
path: root/libs/ardour/test
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/test')
-rw-r--r--libs/ardour/test/sha1_test.cc51
-rw-r--r--libs/ardour/test/sha1_test.h16
2 files changed, 67 insertions, 0 deletions
diff --git a/libs/ardour/test/sha1_test.cc b/libs/ardour/test/sha1_test.cc
new file mode 100644
index 0000000000..e2b271ccb0
--- /dev/null
+++ b/libs/ardour/test/sha1_test.cc
@@ -0,0 +1,51 @@
+#include <cstring>
+#include <cmath>
+#include "sha1.c"
+#include "sha1_test.h"
+
+CPPUNIT_TEST_SUITE_REGISTRATION (Sha1Test);
+
+using namespace std;
+
+void
+Sha1Test::basicTest ()
+{
+ uint32_t a;
+ char hash[41];
+ Sha1Digest s;
+
+ sha1_init (&s);
+ sha1_write (&s, (const uint8_t *) "abc", 3);
+ sha1_result_hash (&s, hash);
+ printf ("Expect:a9993e364706816aba3e25717850c26c9cd0d89d\n");
+ printf ("Result:%s\n", hash);
+ CPPUNIT_ASSERT_MESSAGE ("Sha1: FIPS 180-2 C.1 and RFC3174 7.3 TEST1",
+ !strcmp ("a9993e364706816aba3e25717850c26c9cd0d89d", hash));
+
+
+ sha1_init (&s);
+ sha1_write (&s, (const uint8_t *) "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56);
+ sha1_result_hash (&s, hash);
+ printf ("Expect:84983e441c3bd26ebaae4aa1f95129e5e54670f1\n");
+ printf ("Result:%s\n", hash);
+ CPPUNIT_ASSERT_MESSAGE ("Sha1: FIPS 180-2 C.2 and RFC3174 7.3 TEST2",
+ !strcmp ("84983e441c3bd26ebaae4aa1f95129e5e54670f1", hash));
+
+
+ sha1_init (&s);
+ for (a = 0; a < 80; ++a) sha1_write (&s, (const uint8_t *) "01234567", 8);
+ sha1_result_hash (&s, hash);
+ printf ("Expect:dea356a2cddd90c7a7ecedc5ebb563934f460452\n");
+ printf ("Result:%s\n", hash);
+ CPPUNIT_ASSERT_MESSAGE ("Sha1: RFC3174 7.3 TEST4",
+ !strcmp ("dea356a2cddd90c7a7ecedc5ebb563934f460452", hash));
+
+
+ sha1_init (&s);
+ for (a = 0; a < 1000000; ++a) sha1_writebyte (&s, 'a');
+ sha1_result_hash (&s, hash);
+ printf ("Expect:34aa973cd4c4daa4f61eeb2bdbad27316534016f\n");
+ printf ("Result:%s\n", hash);
+ CPPUNIT_ASSERT_MESSAGE ("Sha1: FIPS 180-2 C.3 and RFC3174 7.3 TEST3",
+ !strcmp ("34aa973cd4c4daa4f61eeb2bdbad27316534016f", hash));
+}
diff --git a/libs/ardour/test/sha1_test.h b/libs/ardour/test/sha1_test.h
new file mode 100644
index 0000000000..d2fe6d5d6a
--- /dev/null
+++ b/libs/ardour/test/sha1_test.h
@@ -0,0 +1,16 @@
+#include <sigc++/sigc++.h>
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class Sha1Test : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (Sha1Test);
+ CPPUNIT_TEST (basicTest);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+ void setUp () {}
+ void tearDown () {}
+
+ void basicTest ();
+};