2
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/mkproof synced 2024-06-03 11:36:12 +02:00

showing hex hash, not encoding

This commit is contained in:
JP Aumasson 2015-11-02 17:05:29 +01:00
parent 20daf837b7
commit 4085d75c1e

View File

@ -70,7 +70,6 @@ static void run(uint8_t *out, char *pwd, uint8_t *salt, uint32_t t_cost,
clock_t start_time, stop_time;
unsigned pwd_length;
argon2_context context;
char encoded[300];
start_time = clock();
@ -120,8 +119,18 @@ static void run(uint8_t *out, char *pwd, uint8_t *salt, uint32_t t_cost,
stop_time = clock();
encode_string(encoded, sizeof encoded, &context);
/* add back when proper decoding */
/*
char encoded[300];
encode_string(encoded, sizeof encoded, &context);
printf("%s\n", encoded);
*/
printf("Hash:\t\t");
for(int i=0; i<context.outlen; ++i) {
printf("%02x", context.out[i]);
}
printf("\n");
printf("%2.3f seconds\n",
((double)stop_time - start_time) / (CLOCKS_PER_SEC));