aboutsummaryrefslogtreecommitdiffstats
path: root/crypt.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-06-23 19:15:49 +0200
committerMattias Andrée <maandree@kth.se>2023-06-23 19:15:49 +0200
commit7281ae7db4d9bc9eb2b59134e1dea1231013f1af (patch)
tree14d15e56dea896c71b0b4576a9633ea759080d58 /crypt.c
parentFix exit status (diff)
downloadkey2root-7281ae7db4d9bc9eb2b59134e1dea1231013f1af.tar.gz
key2root-7281ae7db4d9bc9eb2b59134e1dea1231013f1af.tar.bz2
key2root-7281ae7db4d9bc9eb2b59134e1dea1231013f1af.tar.xz
Use libar2simplified instead of crypt as crypt has a verily limited imput size, and add -h to key2root-addkey, and add key2root-crypt
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'crypt.c')
-rw-r--r--crypt.c61
1 files changed, 61 insertions, 0 deletions
diff --git a/crypt.c b/crypt.c
new file mode 100644
index 0000000..ca3626d
--- /dev/null
+++ b/crypt.c
@@ -0,0 +1,61 @@
+/* See LICENSE file for copyright and license details. */
+#include "crypt.h"
+#include <errno.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <libar2simplified.h>
+#include <libar2.h>
+
+extern char *argv0;
+
+
+char *
+key2root_crypt(char *msg, size_t msglen, const char *paramstr, int autoerase)
+{
+ struct libar2_argon2_parameters *params = NULL;
+ char *end, *ret = NULL, *hash = NULL;
+ size_t size;
+ struct libar2_context ctx;
+
+ libar2simplified_init_context(&ctx);
+ ctx.autoerase_message = (unsigned char)autoerase;
+
+ if (!paramstr)
+ paramstr = libar2simplified_recommendation(0);
+
+ params = libar2simplified_decode_r(paramstr, NULL, &end, NULL, NULL);
+ if (!params) {
+ fprintf(stderr, "%s: libar2simplified_decode_r %s: %s\n", argv0, paramstr, strerror(errno));
+ return NULL;
+ }
+ if (*end) {
+ fprintf(stderr, "%s: libar2simplified_decode_r %s: excess data at end parameter string: %s\n", argv0, paramstr, end);
+ goto out;
+ }
+
+ size = libar2_hash_buf_size(params);
+ if (!size)
+ abort();
+ if (!size || !(hash = malloc(size))) {
+ fprintf(stderr, "%s: malloc %zu: %s\n", argv0, size, strerror(errno));
+ goto out;
+ }
+
+ if (libar2_hash(hash, msg, msglen, params, &ctx)) {
+ if (autoerase)
+ libar2_erase(msg, msglen);
+ fprintf(stderr, "%s: libar2simplified_hash %s: %s\n", argv0, paramstr, strerror(errno));
+ goto out;
+ }
+
+ ret = libar2simplified_encode(params, hash);
+
+out:
+ if (params) {
+ libar2_erase(params->salt, params->saltlen);
+ free(params);
+ }
+ free(hash);
+ return ret;
+}