diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2016-04-15 00:11:06 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2016-04-15 00:11:54 +0200 |
| commit | 4fea76ee02ce020b3c1d20ad3f25342003112ee7 (patch) | |
| tree | d054672ba4e468437a928dec62f0ceecdcd3b0c1 /gnupg | |
| parent | 4da2fd9872bbeeda559a4ff8246d0b13c152f943 (diff) | |
| download | dotfiles-4fea76ee02ce020b3c1d20ad3f25342003112ee7.tar.gz dotfiles-4fea76ee02ce020b3c1d20ad3f25342003112ee7.zip | |
gnupg: added config
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'gnupg')
| -rw-r--r-- | gnupg/gpg.conf | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/gnupg/gpg.conf b/gnupg/gpg.conf new file mode 100644 index 0000000..8071257 --- /dev/null +++ b/gnupg/gpg.conf @@ -0,0 +1,101 @@ +# Options for GnuPG +# Copyright 1998-2003, 2010 Free Software Foundation, Inc. +# Copyright 1998-2003, 2010 Werner Koch +# +# This file is free software; as a special exception the author gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# This file is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Unless you specify which option file to use (with the command line +# option "--options filename"), GnuPG uses the file ~/.gnupg/gpg.conf +# by default. +# +# An options file can contain any long options which are available in +# GnuPG. If the first non white space character of a line is a '#', +# this line is ignored. Empty lines are also ignored. +# +# See the man page for a list of options. + +# Config based on https://github.com/jfrazelle/dotfiles + +# +# default key +# + +default-key 0x96BE8C6FD89D6565 + +# +# behavior +# + +# Disable inclusion of the version string in ASCII armored output +no-emit-version + +# Disable comment string in clear text signatures and ASCII armored messages +no-comments + +# Display long key IDs +keyid-format 0xlong + +# List all keys (or the specified ones) along with their fingerprints +with-fingerprint + +# Display the calculated validity of user IDs during key listings +list-options show-uid-validity +verify-options show-uid-validity + +# +# keyserver +# + +# When using --refresh-keys, if the key in question has a preferred keyserver +# URL, then disable use of that preferred keyserver to refresh the key from +keyserver-options no-honor-keyserver-url + +# When searching for a key with --search-keys, include keys that are marked on +# the keyserver as revoked +keyserver-options include-revoked + +# +# other +# + +# When verifying a signature made from a subkey, ensure that the cross +# certification "back signature" on the subkey is present and valid. +# This protects against a subtle attack against subkeys that can sign. +# Defaults to --no-require-cross-certification. However for new +# installations it should be enabled. + +require-cross-certification + +# If you do not use the Latin-1 (ISO-8859-1) charset, you should tell +# GnuPG which is the native character set. Please check the man page +# for supported character sets. This character set is only used for +# metadata and not for the actual message which does not undergo any +# translation. Note that future version of GnuPG will change to UTF-8 +# as default character set. + +charset utf-8 + +# +# algorithm and ciphers +# + +# list of personal digest preferences. When multiple digests are supported by +# all recipients, choose the strongest one +personal-cipher-preferences AES256 AES192 AES CAST5 + +# list of personal digest preferences. When multiple ciphers are supported by +# all recipients, choose the strongest one +personal-digest-preferences SHA512 SHA384 SHA256 SHA224 + +# message digest algorithm used when signing a key +cert-digest-algo SHA512 + +# This preference list is used for new keys and becomes the default for +# "setpref" in the edit menu +default-preference-list SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed |
