summaryrefslogtreecommitdiff
path: root/nacl/tests/auth2.c
diff options
context:
space:
mode:
Diffstat (limited to 'nacl/tests/auth2.c')
-rw-r--r--nacl/tests/auth2.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/nacl/tests/auth2.c b/nacl/tests/auth2.c
new file mode 100644
index 00000000..ba191de4
--- /dev/null
+++ b/nacl/tests/auth2.c
@@ -0,0 +1,34 @@
1/* "Test Case AUTH256-4" from RFC 4868 */
2
3#include <stdio.h>
4#include "crypto_auth_hmacsha256.h"
5
6unsigned char key[32] = {
7 0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08
8,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x10
9,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18
10,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f,0x20
11} ;
12
13unsigned char c[50] = {
14 0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd
15,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd
16,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd
17,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd
18,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd
19,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd,0xcd
20,0xcd,0xcd
21} ;
22
23unsigned char a[32];
24
25main()
26{
27 int i;
28 crypto_auth_hmacsha256(a,c,sizeof c,key);
29 for (i = 0;i < 32;++i) {
30 printf(",0x%02x",(unsigned int) a[i]);
31 if (i % 8 == 7) printf("\n");
32 }
33 return 0;
34}