2
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/mkproof synced 2024-05-08 06:36:08 +02:00
mkproof/src/checkproof.c
William Casarin 738f584ff6 Use leading zero bits instead of digits
This allows for a more granular difficulty setting

Signed-off-by: William Casarin <jb55@jb55.com>
2020-12-24 09:04:22 -05:00

87 lines
1.9 KiB
C

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "argon2.h"
#include "random.h"
#include "util.h"
#include "proof.h"
static void
die(int exitcode, int check, char *why)
{
if (check) {
fprintf(stderr, "Error: %s\n", why);
exit(exitcode);
}
}
int
main(int argc, char *argv[])
{
if (argc != 3) {
fprintf(stderr, "Usage: %s <challenge> <proof>\n", argv[0]);
return 2;
}
int iters, memory, digits;
unsigned char salt[16];
char *challenge = argv[1];
char *algo = strtok(challenge, ":");
if (strcmp(algo, "argon2id") != 0) {
fprintf(stderr, "Error: unknown challenge type %s\n", algo);
return 2;
}
char *endptr;
char *iterstr = strtok(NULL, ":");
iters = strtoul(iterstr, &endptr, 10);
die(2, *endptr, "Invalid challenge");
char *memorystr = strtok(NULL, ":");
memory = strtoul(memorystr, &endptr, 10);
die(2, *endptr, "Invalid challenge");
char *digitsstr = strtok(NULL, ":");
digits = strtoul(digitsstr, &endptr, 10);
die(2, *endptr, "Invalid challenge");
char *saltstr = strtok(NULL, ":");
die(2, strlen(saltstr) != 32, "Invalid challenge");
int r = dechex(saltstr, strlen(saltstr), salt, sizeof(salt));
die(2, r == -1, "Invalid challenge");
unsigned char password[16];
unsigned char hash[32];
argon2_context context = {
.out = hash,
.outlen = sizeof(hash),
.salt = salt,
.saltlen = sizeof(salt),
.pwd = password,
.pwdlen = sizeof(password),
.t_cost = iters,
.m_cost = memory,
.lanes = 1,
.threads = 1,
.flags = ARGON2_DEFAULT_FLAGS,
.version = ARGON2_VERSION_NUMBER,
};
die(1, strlen(argv[2]) != 32, "Invalid proof");
r = dechex(argv[2], strlen(argv[2]) + 1, password, sizeof(password));
die(1, r == -1, "Invalid proof");
r = argon2id_ctx(&context);
die(1, r != 0, "argon2id failed\n");
if (hash_msb(hash) < digits) {
printf("proof: failed\n");
return 1;
}
printf("proof: ok\n");
return 0;
}