summaryrefslogtreecommitdiff
path: root/test/default/auth.c
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2014-08-11 13:49:21 -0400
committerMicah Anderson <micah@riseup.net>2014-08-11 13:49:21 -0400
commit2e59f9740a29439df7c7a56cf0ae83dec3081d31 (patch)
treed5e7c4e74c9a0f1ea999327d2e68b1dd27be00e0 /test/default/auth.c
initial import of debian version from mentors0.6.1
Diffstat (limited to 'test/default/auth.c')
-rw-r--r--test/default/auth.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/default/auth.c b/test/default/auth.c
new file mode 100644
index 0000000..88c8207
--- /dev/null
+++ b/test/default/auth.c
@@ -0,0 +1,21 @@
+#include <stdio.h>
+
+#define TEST_NAME "auth"
+#include "cmptest.h"
+
+/* "Test Case 2" from RFC 4231 */
+unsigned char key[32] = "Jefe";
+unsigned char c[] = "what do ya want for nothing?";
+
+unsigned char a[32];
+
+int main(void)
+{
+ int i;
+ crypto_auth_hmacsha512256(a,c,sizeof c - 1U,key);
+ for (i = 0;i < 32;++i) {
+ printf(",0x%02x",(unsigned int) a[i]);
+ if (i % 8 == 7) printf("\n");
+ }
+ return 0;
+}