Guest User

gpg.conf

a guest
Jun 2nd, 2023
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. # Tell GnuPG that I want maximum OpenPGP conformance.
  2. openpgp
  3.  
  4. # Disable a few messages from GnuPG that I know I don’t need.
  5. # no-greeting
  6. # no-secmem-warning
  7.  
  8. # Don’t include a version number or a comment in my output.
  9. no-emit-version
  10. # no-comments
  11.  
  12. # Use full 16-character key IDs, not short 8-character key IDs.
  13. keyid-format long
  14.  
  15. # Use the global keyserver network for certificate lookups.
  16. # Further, whenever I send or receive something to/from the
  17. # keyserver network, clean up what I get or send.
  18. # keyserver pool.sks-keyservers.net
  19. keyserver-options import-clean-sigs import-clean-uids export-clean-sigs export-clean-uids
  20.  
  21. # If I don’t explicitly state which certificate to use, use this one.
  22. # default-key 1DCBDC01B44427C7
  23.  
  24. # Always include signatures from these two certificates.
  25. # local-user 1DCBDC01B44427C7
  26.  
  27. # Always add these two certificates to my recipients list.
  28. # encrypt-to 1DCBDC01B44427C7
  29.  
  30. # Turn "From" into "> From", in order to play nice with UNIX mailboxes.
  31. escape-from-lines
  32.  
  33. # Message digest algorithm used when signing a key
  34. cert-digest-algo SHA512
  35.  
  36. # Prefer strong hashes whenever possible.
  37. personal-digest-preferences SHA512 SHA384 SHA256 SHA224
  38.  
  39. # Prefer more modern ciphers over older ones.
  40. personal-cipher-preferences CAMELLIA256 AES256 TWOFISH CAMELLIA192 AES192 CAMELLIA128 AES BLOWFISH CAST5 3DES
  41.  
  42. # Turn up the compression level and prefer BZIP2 over ZIP and ZLIB.
  43. bzip2-compress-level 9
  44. compress-level 9
  45. personal-compress-preferences BZIP2 ZIP ZLIB
Advertisement
Add Comment
Please, Sign In to add comment