summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2020-10-09 16:14:38 +0300
committerTimo Teräs <timo.teras@iki.fi>2020-10-09 16:18:23 +0300
commitda8d83338b7daa2bbd2e940f94d6515d69568800 (patch)
tree29c2883801b485ab7d001967c10d75676a84cbaa
parent705e002bb0ab1a317df73e4efac08ebd25dd4d8c (diff)
downloadapk-tools-da8d83338b7daa2bbd2e940f94d6515d69568800.tar.gz
apk-tools-da8d83338b7daa2bbd2e940f94d6515d69568800.tar.bz2
apk-tools-da8d83338b7daa2bbd2e940f94d6515d69568800.tar.xz
apk-tools-da8d83338b7daa2bbd2e940f94d6515d69568800.zip
add missing apk_trust.h
-rw-r--r--src/apk_trust.h42
-rw-r--r--src/app_version.c4
2 files changed, 44 insertions, 2 deletions
diff --git a/src/apk_trust.h b/src/apk_trust.h
new file mode 100644
index 0000000..89c5d7a
--- /dev/null
+++ b/src/apk_trust.h
@@ -0,0 +1,42 @@
+/* apk_trust.h - Alpine Package Keeper (APK)
+ *
+ * Copyright (C) 2020 Timo Teräs <timo.teras@iki.fi>
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: GPL-2.0-only
+ */
+
+#ifndef APK_TRUST
+#define APK_TRUST
+
+#include <openssl/evp.h>
+#include "apk_blob.h"
+
+struct apk_pkey {
+ uint8_t id[16];
+ EVP_PKEY *key;
+};
+
+int apk_pkey_init(struct apk_pkey *pkey, EVP_PKEY *key);
+void apk_pkey_free(struct apk_pkey *pkey);
+int apk_pkey_load(struct apk_pkey *pkey, int dirfd, const char *fn);
+
+struct apk_trust_key {
+ struct list_head key_node;
+ struct apk_pkey key;
+ char *filename;
+
+};
+
+struct apk_trust {
+ EVP_MD_CTX *mdctx;
+ struct list_head trusted_key_list;
+ struct list_head private_key_list;
+ int allow_untrusted : 1;
+};
+
+int apk_trust_init(struct apk_trust *trust, int keysfd, struct apk_string_array *);
+void apk_trust_free(struct apk_trust *trust);
+struct apk_pkey *apk_trust_key_by_name(struct apk_trust *trust, const char *filename);
+
+#endif
diff --git a/src/app_version.c b/src/app_version.c
index 4dfbf35..a42ab63 100644
--- a/src/app_version.c
+++ b/src/app_version.c
@@ -86,7 +86,7 @@ static int option_parse_applet(void *ctx, struct apk_ctx *ac, int opt, const cha
break;
case OPT_VERSION_check:
ictx->action = ver_validate;
- ac->open_flags = 0;
+ ac->open_flags |= APK_OPENF_NO_STATE | APK_OPENF_NO_REPOS;
break;
case OPT_VERSION_indexes:
ictx->action = ver_indexes;
@@ -96,7 +96,7 @@ static int option_parse_applet(void *ctx, struct apk_ctx *ac, int opt, const cha
break;
case OPT_VERSION_test:
ictx->action = ver_test;
- ac->open_flags = 0;
+ ac->open_flags |= APK_OPENF_NO_STATE | APK_OPENF_NO_REPOS;
break;
default:
return -ENOTSUP;