diff options
author | Daniil Rozanov <dev@rozanov.info> | 2025-02-24 02:34:24 +0400 |
---|---|---|
committer | Daniil Rozanov <dev@rozanov.info> | 2025-02-24 02:34:24 +0400 |
commit | 011d8405259d03fa422ea2f79b55db2b6c533476 (patch) | |
tree | fadab23da53120e2af4047bf07434f81d5178694 /gnupg | |
parent | 7e27388f7f76ba352c6361a32c2a15b961d46d26 (diff) |
feat: few more alias&keymaps
Diffstat (limited to 'gnupg')
-rw-r--r-- | gnupg/.gnupg/gpg-agent.conf | 3 | ||||
-rw-r--r-- | gnupg/.gnupg/gpg.conf | 30 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gnupg/.gnupg/gpg-agent.conf b/gnupg/.gnupg/gpg-agent.conf new file mode 100644 index 0000000..682af4e --- /dev/null +++ b/gnupg/.gnupg/gpg-agent.conf @@ -0,0 +1,3 @@ +default-cache-ttl 28800 +max-cache-ttl 28800 +pinentry-timeout 1200 diff --git a/gnupg/.gnupg/gpg.conf b/gnupg/.gnupg/gpg.conf new file mode 100644 index 0000000..ffa0f43 --- /dev/null +++ b/gnupg/.gnupg/gpg.conf @@ -0,0 +1,30 @@ +# UTF-8 support for compatibility +charset utf-8 + +# No comments in messages +no-comments + +# No version in output +no-emit-version + +# Disable banner +no-greeting + +# Long key id format +keyid-format 0xlong + +# Display UID validity +list-options show-uid-validity +verify-options show-uid-validity + +# Display all keys and their fingerprints +with-fingerprint + +# Cross-certify subkeys are present and valid +require-cross-certification + +# Disable caching of passphrase for symmetrical ops +no-symkey-cache + +# Enable smartcard +use-agent |