aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/Makefile1
-rw-r--r--doc/apk-keys.5.scd18
2 files changed, 19 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 77f1766..fda73f5 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -22,6 +22,7 @@ docs: $(obj)/apk.8 \
$(obj)/apk-upgrade.8 \
$(obj)/apk-verify.8 \
$(obj)/apk-version.8 \
+ $(obj)/apk-keys.5 \
$(obj)/apk-repositories.5 \
$(obj)/apk-world.5
targets += docs
diff --git a/doc/apk-keys.5.scd b/doc/apk-keys.5.scd
new file mode 100644
index 0000000..74c5fdf
--- /dev/null
+++ b/doc/apk-keys.5.scd
@@ -0,0 +1,18 @@
+apk-keys(5)
+
+# NAME
+
+*/etc/apk/keys* - cryptographic keys trusted by apk
+
+# DESCRIPTION
+
+The */etc/apk/keys* directory stores RSA public keys which are trusted by apk
+to verify cryptographic signatures for packages. To trust a new key, simply add
+the armored public key to this directory. See *abuild-keygen*(1) for
+information on generating new keys, *abuild-sign*(1) for using these keys to
+sign files, and *apk-verify*(8) for verifying keys against the apk trust store.
+
+# AUTHORS
+
+Natanael Copa <ncopa@alpinelinux.org>++
+Timo Teräs <_timo.teras@iki.fi_>