summaryrefslogtreecommitdiff
path: root/tools/crypto_bench.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-08-02 15:23:35 -0300
committerJames Almer <jamrial@gmail.com>2015-08-13 13:45:20 -0300
commita791e32b15d1cb5ee1809fe27088a712f7b77096 (patch)
treec9652d55f100464ea837c78c5315a00691e683cf /tools/crypto_bench.c
parent1184795db6344e9aaa87f4db3b6438752839f01e (diff)
downloadffmpeg-a791e32b15d1cb5ee1809fe27088a712f7b77096.tar.gz
crypto_bench: add support for rc4
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tools/crypto_bench.c')
-rw-r--r--tools/crypto_bench.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/crypto_bench.c b/tools/crypto_bench.c
index d1e7c300c4..87e99d056e 100644
--- a/tools/crypto_bench.c
+++ b/tools/crypto_bench.c
@@ -79,6 +79,7 @@ struct hash_impl {
#include "libavutil/camellia.h"
#include "libavutil/cast5.h"
#include "libavutil/twofish.h"
+#include "libavutil/rc4.h"
#define IMPL_USE_lavu IMPL_USE
@@ -154,6 +155,17 @@ static void run_lavu_twofish(uint8_t *output,
av_twofish_init(twofish, hardcoded_key, 128);
av_twofish_crypt(twofish, output, input, size >> 4, NULL, 0);
}
+
+static void run_lavu_rc4(uint8_t *output,
+ const uint8_t *input, unsigned size)
+{
+ static struct AVRC4 *rc4;
+ if (!rc4 && !(rc4 = av_rc4_alloc()))
+ fatal_error("out of memory");
+ av_rc4_init(rc4, hardcoded_key, 128, 0);
+ av_rc4_crypt(rc4, output, input, size, NULL, 0);
+}
+
/***************************************************************************
* crypto: OpenSSL's libcrypto
***************************************************************************/
@@ -167,6 +179,7 @@ static void run_lavu_twofish(uint8_t *output,
#include <openssl/blowfish.h>
#include <openssl/camellia.h>
#include <openssl/cast.h>
+#include <openssl/rc4.h>
#define DEFINE_CRYPTO_WRAPPER(suffix, function) \
static void run_crypto_ ## suffix(uint8_t *output, \
@@ -227,6 +240,15 @@ static void run_crypto_cast128(uint8_t *output,
CAST_ecb_encrypt(input + i, output + i, &cast, 1);
}
+static void run_crypto_rc4(uint8_t *output,
+ const uint8_t *input, unsigned size)
+{
+ RC4_KEY rc4;
+
+ RC4_set_key(&rc4, 16, hardcoded_key);
+ RC4(&rc4, size, input, output);
+}
+
#define IMPL_USE_crypto(...) IMPL_USE(__VA_ARGS__)
#else
#define IMPL_USE_crypto(...) /* ignore */
@@ -479,6 +501,8 @@ struct hash_impl implementations[] = {
IMPL(lavu, "TWOFISH", twofish, "crc:9edbd5c1")
IMPL(gcrypt, "TWOFISH", twofish, "crc:9edbd5c1")
IMPL(tomcrypt, "TWOFISH", twofish, "crc:9edbd5c1")
+ IMPL(lavu, "RC4", rc4, "crc:538d37b2")
+ IMPL(crypto, "RC4", rc4, "crc:538d37b2")
};
int main(int argc, char **argv)