aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaiki Ueno2009-09-20 02:01:09 +0000
committerDaiki Ueno2009-09-20 02:01:09 +0000
commitb0f5fd2efd16db546742118a8e61aa06a140a4ea (patch)
tree0862f7db505efa71ee741b0df2cc1e733acb1d76
parent1e11b018a62ff3e4ece67a701eddf8e67c218132 (diff)
downloademacs-b0f5fd2efd16db546742118a8e61aa06a140a4ea.tar.gz
emacs-b0f5fd2efd16db546742118a8e61aa06a140a4ea.zip
(epa-file-cache-passphrase-for-symmetric-encryption):
Document that this option is not recommended to use.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/epa-file.el6
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9419f4d1da4..d14ef8399b5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-09-20 Daiki Ueno <ueno@unixuser.org>
2
3 * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
4 Document that this option is not recommended to use.
5
12009-09-19 Glenn Morris <rgm@gnu.org> 62009-09-19 Glenn Morris <rgm@gnu.org>
2 7
3 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free 8 * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
diff --git a/lisp/epa-file.el b/lisp/epa-file.el
index fc753df312c..d0df8c9ff38 100644
--- a/lisp/epa-file.el
+++ b/lisp/epa-file.el
@@ -25,7 +25,11 @@
25(require 'epa-hook) 25(require 'epa-hook)
26 26
27(defcustom epa-file-cache-passphrase-for-symmetric-encryption nil 27(defcustom epa-file-cache-passphrase-for-symmetric-encryption nil
28 "If non-nil, cache passphrase for symmetric encryption." 28 "If non-nil, cache passphrase for symmetric encryption.
29
30For security reasons, this option is turned off by default and
31not recommended to use. Use public-key encryption with gpg-agent
32instead, which does the same job in a safer way."
29 :type 'boolean 33 :type 'boolean
30 :group 'epa-file) 34 :group 'epa-file)
31 35