about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-09-05 17:27:05 +0200
committerSoispha <soispha@vhack.eu>2023-09-05 17:27:05 +0200
commitf1a4ac944ab81330073636e974a3903a30cff2b1 (patch)
treeeb3bcf8784f6c77a9eac66f65757a0714d98f16c
parentchore(version): v1.10.0 (diff)
downloadnixos-config-f1a4ac944ab81330073636e974a3903a30cff2b1.tar.gz
nixos-config-f1a4ac944ab81330073636e974a3903a30cff2b1.zip
Feat(hm/conf/gpg/keys): Add gpg key
-rw-r--r--.gitattributes1
-rw-r--r--hm/soispha/conf/gpg/default.nix4
-rw-r--r--hm/soispha/conf/gpg/keys/key_4bin0 -> 2004 bytes
-rw-r--r--notes/gpg_keys.md41
4 files changed, 46 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index fd6b66c6..1198b1a5 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -4,3 +4,4 @@ hm/soispha/conf/mail/non_public_accounts.nix filter=git-crypt diff=git-crypt
 hm/soispha/conf/gpg/keys/key_1 filter=git-crypt diff=git-crypt
 hm/soispha/conf/gpg/keys/key_2 filter=git-crypt diff=git-crypt
 hm/soispha/conf/gpg/keys/key_3 filter=git-crypt diff=git-crypt
+hm/soispha/conf/gpg/keys/key_4 filter=git-crypt diff=git-crypt
diff --git a/hm/soispha/conf/gpg/default.nix b/hm/soispha/conf/gpg/default.nix
index 97334c8f..94b6141a 100644
--- a/hm/soispha/conf/gpg/default.nix
+++ b/hm/soispha/conf/gpg/default.nix
@@ -57,6 +57,10 @@ in {
         source = ./keys/key_3;
         trust = "full";
       }
+      {
+        source = ./keys/key_4;
+        trust = "full";
+      }
     ];
   };
   services = {
diff --git a/hm/soispha/conf/gpg/keys/key_4 b/hm/soispha/conf/gpg/keys/key_4
new file mode 100644
index 00000000..bed15004
--- /dev/null
+++ b/hm/soispha/conf/gpg/keys/key_4
Binary files differdiff --git a/notes/gpg_keys.md b/notes/gpg_keys.md
new file mode 100644
index 00000000..f89e91fc
--- /dev/null
+++ b/notes/gpg_keys.md
@@ -0,0 +1,41 @@
+# How to add a comment to gpg keys
+Add it manually, the supported options include (RFC4880):
+
+ - "Version", which states the OpenPGP implementation and version
+   used to encode the message.
+
+ - "Comment", a user-defined comment.  OpenPGP defines all text to
+   be in UTF-8.  A comment may be any UTF-8 string.  However, the
+   whole point of armoring is to provide seven-bit-clean data.
+   Consequently, if a comment has characters that are outside the
+   US-ASCII range of UTF, they may very well not survive transport.
+
+ - "MessageID", a 32-character string of printable characters.  The
+   string must be the same for all parts of a multi-part message
+   that uses the "PART X" Armor Header.  MessageID strings should be
+   unique enough that the recipient of the mail can associate all
+   the parts of a message with each other.  A good checksum or
+   cryptographic hash function is sufficient.
+
+   The MessageID SHOULD NOT appear unless it is in a multi-part
+   message.  If it appears at all, it MUST be computed from the
+   finished (encrypted, signed, etc.) message in a deterministic
+   fashion, rather than contain a purely random value.  This is to
+   allow the legitimate recipient to determine that the MessageID
+   cannot serve as a covert means of leaking cryptographic key
+   information.
+
+ - "Hash", a comma-separated list of hash algorithms used in this
+   message.  This is used only in cleartext signed messages.
+
+ - "Charset", a description of the character set that the plaintext
+   is in.  Please note that OpenPGP defines text to be in UTF-8.  An
+   implementation will get best results by translating into and out
+   of UTF-8.  However, there are many instances where this is easier
+   said than done.  Also, there are communities of users who have no
+   need for UTF-8 because they are all happy with a character set
+   like ISO Latin-5 or a Japanese character set.  In such instances,
+   an implementation MAY override the UTF-8 default by using this
+   header key.  An implementation MAY implement this key and any
+   translations it cares to; an implementation MAY ignore it and
+   assume all text is UTF-8.