gpg: allow for duplicate keys in config (#1814)
Allow for duplicate keys in the form of a list of strings. Also update the `settings` example configuration to use `literalExample`.
This commit is contained in:
parent
2b7a73071a
commit
eb3a0342a8
3 changed files with 26 additions and 15 deletions
|
|
@ -14,6 +14,8 @@ require-cross-certification
|
|||
s2k-cipher-algo AES128
|
||||
s2k-digest-algo SHA512
|
||||
throw-keyids
|
||||
trusted-key 0xXXXXXXXXXXXXX
|
||||
trusted-key 0xYYYYYYYYYYYYY
|
||||
use-agent
|
||||
verify-options show-uid-validity
|
||||
with-fingerprint
|
||||
with-fingerprint
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@ with lib;
|
|||
no-comments = false;
|
||||
s2k-cipher-algo = "AES128";
|
||||
throw-keyids = true;
|
||||
trusted-key = [
|
||||
"0xXXXXXXXXXXXXX"
|
||||
"0xYYYYYYYYYYYYY"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue