summaryrefslogtreecommitdiffstats
path: root/src/tests/crypto-tests.c
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2012-04-17 11:03:23 -0400
committerStephen Gallagher <sgallagh@redhat.com>2012-04-24 09:50:56 -0400
commitb35f20cd8ecdc8308a3201e55752fb0443ec6ae4 (patch)
tree86e2dd8a431652fcf00e2e7513371d02db2ea6e9 /src/tests/crypto-tests.c
parent84c5d214242c3846a1b4c8f80e1935e77fe1c5c7 (diff)
downloadsssd_unused-b35f20cd8ecdc8308a3201e55752fb0443ec6ae4.tar.gz
sssd_unused-b35f20cd8ecdc8308a3201e55752fb0443ec6ae4.tar.xz
sssd_unused-b35f20cd8ecdc8308a3201e55752fb0443ec6ae4.zip
UTIL: Add HMAC-SHA-1 function
Diffstat (limited to 'src/tests/crypto-tests.c')
-rw-r--r--src/tests/crypto-tests.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/tests/crypto-tests.c b/src/tests/crypto-tests.c
index ba584668..2e792bbd 100644
--- a/src/tests/crypto-tests.c
+++ b/src/tests/crypto-tests.c
@@ -91,6 +91,41 @@ START_TEST(test_encrypt_decrypt)
}
END_TEST
+START_TEST(test_hmac_sha1)
+{
+ const char *message = "test message";
+ const char *keys[] = {
+ "short",
+ "proper6789012345678901234567890123456789012345678901234567890123",
+ "longlonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglong",
+ NULL };
+ const char *results[] = {
+ "\x2b\x27\x53\x07\x17\xd8\xc0\x8f\x97\x27\xdd\xb3\xec\x41\xd8\xa3\x94\x97\xaa\x35",
+ "\x37\xe7\x0a\x6f\x71\x0b\xa9\x93\x81\x53\x8f\x5c\x06\x83\x44\x2f\xc9\x41\xe3\xed",
+ "\xbd\x99\xa7\x7f\xfc\x5e\xde\x04\x32\x7f\x7b\x71\x4d\xc0\x3f\x51\x2d\x25\x01\x28",
+ NULL };
+ unsigned char out[SSS_SHA1_LENGTH];
+ int ret, expected;
+ int i;
+
+#ifdef HAVE_NSS
+ expected = EOK;
+#elif HAVE_LIBCRYPTO
+ expected = ENOSYS;
+#else
+#error Unknown crypto back end
+#endif
+
+ for (i = 0; keys[i]; i++) {
+ ret = sss_hmac_sha1((const unsigned char *)keys[i], strlen(keys[i]),
+ (const unsigned char *)message, strlen(message),
+ out);
+ fail_if(ret != expected);
+ fail_if(ret == EOK && memcmp(out, results[i], SSS_SHA1_LENGTH) != 0);
+ }
+}
+END_TEST
+
Suite *crypto_suite(void)
{
Suite *s = suite_create("sss_crypto");
@@ -102,6 +137,7 @@ Suite *crypto_suite(void)
tcase_add_test(tc, test_nss_init);
#endif
tcase_add_test(tc, test_encrypt_decrypt);
+ tcase_add_test(tc, test_hmac_sha1);
/* Add all test cases to the test suite */
suite_add_tcase(s, tc);