Jakob Unterwurzacher
cec2da3e33
Add "-memprofile" option
2016-01-21 23:55:37 +01:00
Jakob Unterwurzacher
d163169655
Wrap Logger to make disabling output more efficient
...
Instead of using SetOutput(ioutil.Discard), which means
that Printf is still called for every debug message,
use a simple and fast boolean check.
Streaming write performance improves from 86 to 93 MB/s.
2016-01-21 22:59:11 +01:00
Jakob Unterwurzacher
9bab220a1b
Switch to syslog when running in the background
2016-01-20 22:31:15 +01:00
Jakob Unterwurzacher
17f0eb1339
Convert logging to standard Go log.Logger
...
This is in preparation of logging to syslog.
2016-01-20 20:57:00 +01:00
Jakob Unterwurzacher
b9dd9e9a1c
Typo in README
2016-01-19 23:08:10 +01:00
Jakob Unterwurzacher
8432382244
Update README for v0.7.2
2016-01-19 23:01:21 +01:00
Jakob Unterwurzacher
b3c9a275c7
package.bash: Encode host distribution into tar filename
2016-01-09 15:47:29 +01:00
Jakob Unterwurzacher
ecdc58baa3
Update README for v0.7.1
2016-01-09 15:31:58 +01:00
Jakob Unterwurzacher
f5fe140d5b
build.bash: copy binary to $GOPATH/bin
2016-01-09 15:31:34 +01:00
Jakob Unterwurzacher
f01f599d74
Make test.bash work when called from outside the gocryptfs directory
...
Also, get rid of useless intermediate build step
2016-01-09 14:27:04 +01:00
Jakob Unterwurzacher
236970adee
OSX: Fix build failure caused by syntax errors
2016-01-09 13:04:48 +01:00
Jakob Unterwurzacher
f93729f20d
Disable fallocate on OSX (not available and causes a build failure)
2016-01-07 21:39:41 +01:00
Jakob Unterwurzacher
6a9da0db10
Add EXAMPLES to manpage
2016-01-06 16:55:38 +01:00
Jakob Unterwurzacher
6443691c7e
Delete old logo
2016-01-05 21:24:28 +01:00
rfjakob
6356c559b1
README: Uppercase MIT license badge
2016-01-05 21:18:04 +01:00
rfjakob
e17282b205
README: Change to new two-color logo
2016-01-05 21:04:18 +01:00
Jakob Unterwurzacher
1936de783f
Color for the "init success" message
2016-01-04 20:55:25 +01:00
rfjakob
e9ed3e85b9
README: Link to Mac OS X support tracking ticket
2016-01-04 10:24:00 +01:00
Jakob Unterwurzacher
3ea60a553e
README: mention signed tags
2015-12-20 21:15:49 +01:00
Jakob Unterwurzacher
5d25c6e7e9
Link to official website; move security document
2015-12-20 18:25:10 +01:00
Jakob Unterwurzacher
57b32a0b8b
Make build.bash work when called from outside the gocryptfs directory
2015-12-20 17:44:11 +01:00
Jakob Unterwurzacher
38f7dc1a17
Make build.bash version bake-in compatible with Go 1.3 and 1.4
2015-12-20 17:30:10 +01:00
Jakob Unterwurzacher
65d1f888c8
travis: also build using build.bash
2015-12-20 17:15:29 +01:00
Jakob Unterwurzacher
c703823521
travis: also build on Go 1.3.3
2015-12-20 17:06:54 +01:00
Jakob Unterwurzacher
3bbaa1208f
Add logo, update README for v0.7
2015-12-20 15:42:52 +01:00
Jakob Unterwurzacher
04abad5e84
Update performance data for v0.7
2015-12-20 15:39:40 +01:00
Jakob Unterwurzacher
ad00ba38e5
Colorize output
2015-12-19 15:46:19 +01:00
Jakob Unterwurzacher
8c7e31329d
Use NewGCMWithNonceSize only through goGCMWrapper to support Go 1.4
2015-12-19 15:19:31 +01:00
Jakob Unterwurzacher
1caa925868
Increase GCM IV size from 96 to 128 bits
...
This pushes back the birthday bound for collisions to make it virtually
irrelevant.
2015-12-19 15:02:29 +01:00
Jakob Unterwurzacher
88826dc51d
diriv: handle directory rename over directory
...
If an empty directory is overwritten we will always get
ENOTEMPTY as the "empty" directory will still contain gocryptfs.diriv.
Handle that case by removing the target directory and trying again.
Fixes issue #10
2015-12-19 13:21:15 +01:00
Jakob Unterwurzacher
00a712b4d1
go fmt
...
...and minimal comment changes.
2015-12-13 20:24:13 +01:00
Jakob Unterwurzacher
8518d6d7bd
Handle EINTR returned by Fallocate
...
Fallocate can return EINTR (interrupted system call) and does so
quite often when cpu profiling is enabled.
2015-12-13 17:17:01 +01:00
Jakob Unterwurzacher
b02ad12814
tests: overwrite directory with another directory
...
Testcase for issue #10 (currently failing)
2015-12-11 23:27:38 +01:00
Jakob Unterwurzacher
7758bdc61d
tests: add "gocryptfs -init -plaintextnames" cli testcase
2015-12-11 22:21:00 +01:00
Jakob Unterwurzacher
e99e841713
Rmdir: handle creating and removing unreadable directories
...
This patch also splits off Mkdir and Rmdir into its own file.
Fixes issue #8 , thanks to @diseq for the bug report.
2015-12-11 20:02:12 +01:00
Jakob Unterwurzacher
78cd97c5e9
Wrap NewGCMWithNonceSize() to enable compilation on Go 1.4
2015-12-10 20:55:09 +01:00
Jakob Unterwurzacher
61ee2271c4
tests: test read-write directory operations on all example filesystems
2015-12-10 20:02:18 +01:00
Jakob Unterwurzacher
29336ba614
tests: add v0.6-plaintextnames example filesystem
2015-12-10 19:50:45 +01:00
Jakob Unterwurzacher
b4b9072cc2
Simplify CreateConfFile: do not allow specification of EMENames
2015-12-10 19:38:02 +01:00
Jakob Unterwurzacher
ccf6d00728
Add missing PlaintextNames checks in OpenDir, Mkdir, Rmdir, initDir
...
Plaintextnames support has bitrotted during the DirIV additions,
this needs test cases. Will be added in a future patch.
Fixes issue #9 .
2015-12-10 01:12:05 +01:00
Jakob Unterwurzacher
14deea6c20
travis ci: do not build on go 1.4.3
...
Go 1.4.3 seems to be missing cipher.NewGCMWithNonceSize. Error:
cryptfs/openssl_test.go:23: undefined: cipher.NewGCMWithNonceSize
2015-12-08 17:16:23 +01:00
Jakob Unterwurzacher
ce4a9f9ed6
README: fix typo
2015-12-08 16:44:39 +01:00
Jakob Unterwurzacher
9419e7ae85
Update README + docs for v0.6 release
2015-12-08 16:41:45 +01:00
Jakob Unterwurzacher
e3f35d38b5
tests: add v0.6 example filesystem with EME
2015-12-08 16:17:19 +01:00
Jakob Unterwurzacher
c6dacd6f91
Add EME filename encryption & enable it by default
2015-12-08 16:17:04 +01:00
Jakob Unterwurzacher
ff8c81f95b
go fmt
2015-12-08 13:51:06 +01:00
Jakob Unterwurzacher
f4ae0304af
opensslGCM: preallocate buffer space, improves performance by 11%
...
Results of cryptfs/openssl_benchmark.bash :
Before:
BenchmarkEnc_OpenSSL_4k_AES256_nonce96-2 50000 31802 ns/op 127.28 MB/s
BenchmarkEnc_OpenSSL_4k_AES256_nonce128-2 50000 32110 ns/op 126.06 MB/s
After:
BenchmarkEnc_OpenSSL_4k_AES256_nonce96-2 50000 28612 ns/op 141.47 MB/s
BenchmarkEnc_OpenSSL_4k_AES256_nonce128-2 50000 28613 ns/op 141.47 MB/s
2015-12-08 13:22:57 +01:00
Jakob Unterwurzacher
c6a6641b58
tests: add encryption benchmarks to cryptfs
2015-12-08 13:19:19 +01:00
Jakob Unterwurzacher
21abf57abb
Update README
...
gocryptfs is no longer developed in gocryptfs because of the inconvenience
that you cannot mount a FUSE filesystem inside a FUSE mount
2015-12-06 15:13:06 +01:00
Jakob Unterwurzacher
7375d86ada
tests: add TestRename
2015-12-06 15:10:23 +01:00