Variable: tramp-crypt-encfs-option

tramp-crypt-encfs-option is a customizable variable defined in tramp-crypt.el.gz.

Value

"--standard"

Documentation

Configuration option for encfs.

This could be either "--standard" or "--paranoia". The file name IV chaining mode mode will always be disabled when initializing a new encrypted remote directory.

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-crypt.el.gz
(defcustom tramp-crypt-encfs-option "--standard"
  "Configuration option for encfs.
This could be either \"--standard\" or \"--paranoia\".  The file
name IV chaining mode mode will always be disabled when
initializing a new encrypted remote directory."
  :group 'tramp
  :version "28.1"
  :type '(choice (const "--standard")
		 (const "--paranoia")))