diff options
author | Jakob Unterwurzacher | 2015-09-06 13:13:47 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-06 13:13:47 +0200 |
commit | cd9512801525a63530c1f74ac184fb1d73bff67b (patch) | |
tree | a3c709d2bfa3f669b89a16d58cdf475e49c3c5f7 | |
parent | cbc35cbd6e1dda47c4d2ed9e1c03a4901ef5c89a (diff) |
readme: link to go-vs-openssl.md
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | openssl_benchmark/go-vs-openssl.md | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -15,7 +15,7 @@ Design * 4096 byte blocks per default * 28 bytes of overhead per block (16 bytes auth tag, 12 byte nonce) * uses openssl through [spacemonkeygo/openssl](https://github.com/spacemonkeygo/openssl) - for a 3x speedup compared to `crypto/cipher` + for a 3x speedup compared to `crypto/cipher` (see [go-vs-openssl.md](https://github.com/rfjakob/gocryptfs/blob/master/openssl_benchmark/go-vs-openssl.md)) for details * Per-write unique 96 bit nonces * starts from a random value (generated at mount time) and counts up * Flename encryption using AES-CBC-128 diff --git a/openssl_benchmark/go-vs-openssl.md b/openssl_benchmark/go-vs-openssl.md index 3c3ec7f..222ae8e 100644 --- a/openssl_benchmark/go-vs-openssl.md +++ b/openssl_benchmark/go-vs-openssl.md @@ -87,5 +87,4 @@ aes instructions ( https://en.wikipedia.org/wiki/AES_instruction_set ) cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: - [...] |