aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-05-13 22:18:17 +0200
committerJakob Unterwurzacher2016-05-13 22:18:17 +0200
commit5d1d5645121b3a73bcb11c608737341210232932 (patch)
treec0fc6090b62c950b4ccc39e64690479b6a937a63
parenta93bcabe9c1dea14bf29b94cbddf62c1bec4d315 (diff)
Update README vor v0.10-rc3v0.10-rc3
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0dcb7d9..66d7214 100644
--- a/README.md
+++ b/README.md
@@ -100,7 +100,7 @@ RM: 4.42
Changelog
---------
-v0.10-rc1
+v0.10-rc3
* **Drop dependency to `spacemonkeygo/openssl`**
* gocryptfs now has its own thin wrapper to OpenSSL's GCM implementation
called `stupidgcm`.
@@ -110,6 +110,13 @@ v0.10-rc1
* Warn but continue anyway if fallocate(2) is not supported by the
underlying filesystem, see [issue #22](https://github.com/rfjakob/gocryptfs/issues/22)
* Enables to use gocryptfs on ZFS, albeit with reduced out-of-space safety.
+* **Automatically choose between OpenSSL and Go crypto** [issue #23](https://github.com/rfjakob/gocryptfs/issues/23)
+ * `-openssl=auto` is the new default
+ * Go 1.6 added an optimized GCM implementation in amd64 assembly that uses AES-NI.
+ This is faster than OpenSSL and is used if available.
+ * In all other cases OpenSSL is much faster and is used instead.
+ * Passing `-openssl=true/false` overrides the autodetection.
+* [Fix statfs](https://github.com/rfjakob/gocryptfs/pull/27), by @lxp
v0.9
* **Long file name support**