diff options
author | Jakob Unterwurzacher | 2017-02-22 23:55:43 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-02-22 23:56:34 +0100 |
commit | 1e03e059fa0980db8d527f1c01094999d8813b95 (patch) | |
tree | 950f537f1fa58e9f0506a540b31d790030e69a1d /.travis.yml | |
parent | b056776a013813e251aa37027c3aaa3f1e22d7c8 (diff) |
Implement "gocryptfs -speed"
A crypto benchmark mode like "openssl speed".
Example run:
$ ./gocryptfs -speed
AES-GCM-256-OpenSSL 180.89 MB/s (selected in auto mode)
AES-GCM-256-Go 48.19 MB/s
AES-SIV-512-Go 37.40 MB/s
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5fea238..20fc6c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ script: - go build - ./build-without-openssl.bash - ./build.bash + - ./gocryptfs -speed - ./test.bash # fuse on travis |