diff options
Diffstat (limited to 'nacl/tests/auth.c')
-rw-r--r-- | nacl/tests/auth.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/nacl/tests/auth.c b/nacl/tests/auth.c deleted file mode 100644 index 5086624e..00000000 --- a/nacl/tests/auth.c +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #include <stdio.h> | ||
2 | #include "crypto_auth_hmacsha512256.h" | ||
3 | |||
4 | /* "Test Case 2" from RFC 4231 */ | ||
5 | unsigned char key[32] = "Jefe"; | ||
6 | unsigned char c[28] = "what do ya want for nothing?"; | ||
7 | |||
8 | unsigned char a[32]; | ||
9 | |||
10 | main() | ||
11 | { | ||
12 | int i; | ||
13 | crypto_auth_hmacsha512256(a,c,sizeof c,key); | ||
14 | for (i = 0;i < 32;++i) { | ||
15 | printf(",0x%02x",(unsigned int) a[i]); | ||
16 | if (i % 8 == 7) printf("\n"); | ||
17 | } | ||
18 | return 0; | ||
19 | } | ||