diff options
author | Nicolas George | 2013-05-16 20:10:11 +0200 |
---|---|---|
committer | Nicolas George | 2013-09-04 16:36:11 +0200 |
commit | d5b58f678dcb045c873def4d243348a031c902c8 (patch) | |
tree | b57e3558c31e78ef72b663255b92a2f2a8350e32 /.gitignore | |
parent | dc8f732292fcab3f72462abbc0d71ab3f87b59b3 (diff) |
tools: add benchmark for crypto functions.
The benchmark tests the speed of the following algorithms:
MD5, SHA-1, SHA-256, SHA-512, RIPEMD-160, AES-128.
It can optionally be built to perform the same benchmark on
other crypto libraries, for comparison purposes.
The supported libraries are:
- crypto: OpenSSL's libcrypto;
- gcrypt: GnuTLS's libgcrypt;
- tomcrypt: LibTomCrypt
To enable them, use this syntax:
make VERSUS=crypto+gcrypt+tomcrypt tools/crypto_bench
They do not need to have been enabled in configure.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 5c90bfb78e..1f13ec4f01 100644 --- a/.gitignore +++ b/.gitignore @@ -63,6 +63,7 @@ /tools/aviocat /tools/ffbisect /tools/bisect.need +/tools/crypto_bench /tools/cws2fws /tools/fourcc2pixfmt /tools/ffescape |