Variable: org-mobile-use-encryption
org-mobile-use-encryption is a customizable variable defined in
org-mobile.el.gz.
Value
nil
Documentation
Non-nil means keep only encrypted files on the WebDAV server.
Encryption uses AES-256, with a password given in
org-mobile-encryption-password(var)/org-mobile-encryption-password(fun). When nil, plain files are kept
on the server.
Turning on encryption requires setting the same password in the mobile application. Before turning this on, check if the mobile application does support it.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defcustom org-mobile-use-encryption nil
"Non-nil means keep only encrypted files on the WebDAV server.
Encryption uses AES-256, with a password given in
`org-mobile-encryption-password'. When nil, plain files are kept
on the server.
Turning on encryption requires setting the same password in the
mobile application. Before turning this on, check if the mobile
application does support it."
:group 'org-mobile
:version "24.1"
:type 'boolean)