Variable: org-crypt-key

org-crypt-key is a customizable variable defined in org-crypt.el.gz.

Value

""

Documentation

The default key to use when encrypting the contents of a heading.

If this variable is nil, always use symmetric encryption, unconditionally.

Otherwise, The string is matched against all keys in the key ring. In particular, the empty string matches no key. If no key is found, look for the epa-file-encrypt-to local variable. Ultimately fall back to symmetric encryption.

This setting can be overridden in the CRYPTKEY property.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-crypt.el.gz
(defcustom org-crypt-key ""
  "The default key to use when encrypting the contents of a heading.

If this variable is nil, always use symmetric encryption, unconditionally.

Otherwise, The string is matched against all keys in the key ring.
In particular, the empty string matches no key.  If no key is found,
look for the `epa-file-encrypt-to' local variable.  Ultimately fall back
to symmetric encryption.

This setting can be overridden in the CRYPTKEY property."
  :group 'org-crypt
  :type '(choice
	  (string :tag "Public key(s) matching")
	  (const :tag "Symmetric encryption" nil)))