blob: 517cc8286bf0aac105de0f41192f3eb7c2ce0cf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
% GOCRYPTFS(1)
% github.com/rfjakob
% Nov 2015
NAME
====
gocryptfs - mount an encrypted directory
SYNOPSIS
========
Initialize encrypted filesystem
-------------------------------
gocryptfs -init [OPTIONS] CIPHERDIR
Mount
-----
gocryptfs [OPTIONS] CIPHERDIR MOUNTPOINT
Change password
---------------
gocryptfs -passwd [OPTIONS] CIPHERDIR
DESCRIPTION
===========
Options:
**-config string**
: Use specified config file instead of CIPHERDIR/gocryptfs.conf
**-cpuprofile string**
: Write cpu profile to specified file
**-debug**
: Enable debug output
**-extpass string**
: Use an external program (like ssh-askpass) for the password prompt.
The program should return the password on stdout, a trailing newline is
stripped by gocryptfs.
**-f**
: Stay in the foreground
**-fusedebug**
: Enable fuse library debug output
**-init**
: Initialize encrypted directory
**-masterkey string**
: Mount with explicit master key
**-notifypid int**
: Send USR1 to the specified process after successful mount - used internally for daemonization
**-openssl bool**
: Use OpenSSL instead of built-in Go crypto (default true)
**-passwd**
: Change password
**-plaintextnames**
: Do not encrypt file names
**-q**
: Quiet - silence informational messages
**-version**
: Print version and exit
**-zerokey**
: Use all-zero dummy master key
|