summaryrefslogtreecommitdiff
path: root/Documentation/openssl-gcm.md
blob: d955b39a4146281fa87af124cb647452ef63b3ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Go builtin GCM vs OpenSSL
=========================

OpenSSL is over four times faster than Go's built-in GCM implementation.

```
$ cd internal/stupidgcm
$ go test -bench .
PASS
Benchmark4kEncStupidGCM-2	   50000	     25860 ns/op	 158.39 MB/s
Benchmark4kEncGoGCM-2    	   10000	    116050 ns/op	  35.29 MB/s
ok  	github.com/rfjakob/gocryptfs/internal/stupidgcm	3.667s
```