2014-09-24 17:40:21 -04:00
|
|
|
/*
|
|
|
|
* GraxRabble
|
|
|
|
* Demo programs for libsodium.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-05-27 07:02:56 -04:00
|
|
|
#include <sodium.h> /* library header */
|
2014-09-24 17:40:21 -04:00
|
|
|
|
2015-05-27 09:47:49 -04:00
|
|
|
#include "utils.h" /* utility functions shared by demos */
|
2014-09-24 17:40:21 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Full featured authentication which is used to verify that the message
|
|
|
|
* comes from the expected person. It should be safe to keep the same key
|
|
|
|
* for multiple messages.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
auth(void)
|
|
|
|
{
|
2015-05-27 07:02:56 -04:00
|
|
|
unsigned char k[crypto_auth_KEYBYTES]; /* key */
|
|
|
|
unsigned char a[crypto_auth_BYTES]; /* authentication token */
|
2015-05-27 09:39:34 -04:00
|
|
|
unsigned char m[MAX_INPUT_SIZE]; /* message */
|
2015-05-27 07:02:56 -04:00
|
|
|
size_t mlen; /* message length */
|
2014-09-24 17:40:21 -04:00
|
|
|
int r;
|
|
|
|
|
|
|
|
puts("Example: crypto_auth\n");
|
2015-05-27 07:02:56 -04:00
|
|
|
|
2014-09-24 19:39:35 -04:00
|
|
|
/*
|
|
|
|
* Keys are entered as ascii values. The key is zeroed to
|
|
|
|
* maintain consistency. Input is read through a special
|
|
|
|
* function which reads exactly n bytes into a buffer to
|
|
|
|
* prevent buffer overflows.
|
|
|
|
*/
|
2015-05-27 09:46:17 -04:00
|
|
|
memset(k, 0, sizeof k);
|
2015-05-27 07:02:56 -04:00
|
|
|
prompt_input("Input your key > ", (char*)k, sizeof k);
|
2014-09-24 19:39:35 -04:00
|
|
|
puts("Your key that you entered");
|
|
|
|
print_hex(k, sizeof k);
|
|
|
|
putchar('\n');
|
|
|
|
|
2015-05-27 07:02:56 -04:00
|
|
|
mlen = prompt_input("Input your message > ", (char*)m, sizeof m);
|
2014-09-24 17:40:21 -04:00
|
|
|
putchar('\n');
|
|
|
|
|
|
|
|
printf("Generating %s authentication...\n", crypto_auth_primitive());
|
|
|
|
crypto_auth(a, m, mlen, k);
|
|
|
|
|
|
|
|
puts("Format: authentication token::message");
|
|
|
|
print_hex(a, sizeof a);
|
|
|
|
fputs("::", stdout);
|
2015-05-27 07:02:56 -04:00
|
|
|
puts((const char*)m);
|
2014-09-24 17:40:21 -04:00
|
|
|
putchar('\n');
|
|
|
|
|
|
|
|
puts("Verifying authentication...");
|
|
|
|
r = crypto_auth_verify(a, m, mlen, k);
|
|
|
|
print_verification(r);
|
|
|
|
|
2015-05-27 07:02:56 -04:00
|
|
|
sodium_memzero(k, sizeof k); /* wipe sensitive data */
|
2014-09-24 17:40:21 -04:00
|
|
|
sodium_memzero(a, sizeof a);
|
|
|
|
sodium_memzero(m, sizeof m);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2015-05-27 06:41:43 -04:00
|
|
|
main(void)
|
2014-09-24 17:40:21 -04:00
|
|
|
{
|
2015-05-27 10:10:07 -04:00
|
|
|
init();
|
2014-09-24 17:40:21 -04:00
|
|
|
|
2015-05-27 06:41:43 -04:00
|
|
|
return auth() != 0;
|
2014-09-24 17:40:21 -04:00
|
|
|
}
|