2
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/mkproof synced 2024-04-28 08:55:00 +02:00

Tune defaults

This commit is contained in:
Drew DeVault 2020-11-25 12:42:46 -05:00
parent 66d4788762
commit 97bfdd7ead
4 changed files with 13 additions and 32 deletions

View File

@ -6,15 +6,10 @@ mkchallenge(1)
# SYNOPSIS
*mkchallenge* [-d _difficulty_]
*mkchallenge*
# DESCRIPTION
*mkchallenge* generates a proof-of-work challenge and prints it to stdout. To
solve the challenge, see *mkproof*(1). To check the solution, see
*checkproof*(1).
# OPTIONS
*-d* _difficulty_
Sets the challenge difficulty. The default is 4.

View File

@ -74,8 +74,9 @@ main(int argc, char *argv[])
r = argon2id_ctx(&context);
die(r != 0, "argon2id failed\n");
for (int i = 0; i < digits / 2; ++i) {
if (hash[i] != 0) {
for (int i = 0; i < digits; ++i) {
unsigned char n = hash[i / 2] & (i % 2 ? 0x0F : 0xF0);
if (n != 0) {
printf("proof: failed\n");
return 1;
}

View File

@ -6,35 +6,21 @@
#include "util.h"
#define ALGORITHM "argon2id"
#define ITERATIONS 5
#define ITERATIONS 10
#define MEMORY 12
#define DIGITS 5
static void
usage(char *argv_0)
{
fprintf(stderr, "Usage: %s [-d difficulty]\n", argv_0);
exit(1);
}
int
main(int argc, char *argv[])
{
int digits = 4;
int c;
char *endptr;
while ((c = getopt(argc, argv, "d:")) != -1) {
switch (c) {
case 'd':
digits = strtoul(optarg, &endptr, 10);
if (*endptr) {
usage(argv[0]);
}
break;
}
}
if (optind < argc) {
if (argc != 1) {
fprintf(stderr, "Usage: %s\n", argv[0]);
usage(argv[0]);
}
@ -44,8 +30,7 @@ main(int argc, char *argv[])
char seedhex[33];
enchex(seed, sizeof(seed), seedhex, sizeof(seedhex));
printf("%s:%d:%d:%d:%s\n", ALGORITHM,
ITERATIONS, MEMORY, digits * 2, seedhex);
ITERATIONS, MEMORY, DIGITS, seedhex);
return 0;
}

View File

@ -70,7 +70,7 @@ main(int argc, char *argv[])
if (isatty(STDERR_FILENO)) {
// TODO: Provide a better estimate based on the difficulty
fprintf(stderr, "Generating a proof of work.\n");
fprintf(stderr, "This may take anywhere from tens of seconds to a few hours on slow computers.\n");
fprintf(stderr, "This may take anywhere from several minutes to a few hours on slow computers.\n");
}
unsigned long nattempts = 0;
@ -87,8 +87,9 @@ main(int argc, char *argv[])
die(r != 0, "argon2id failed\n");
valid = 1;
for (int i = 0; i < digits / 2; ++i) {
if (hash[i] != 0) {
for (int i = 0; i < digits; ++i) {
unsigned char n = hash[i / 2] & (i % 2 ? 0x0F : 0xF0);
if (n != 0) {
valid = 0;
break;
}
@ -102,6 +103,5 @@ main(int argc, char *argv[])
char proof[33];
enchex(password, sizeof(password), proof, sizeof(proof));
printf("%s\n", proof);
return 0;
}