From: James Almer Date: Sun, 2 Aug 2015 18:23:35 +0000 (-0300) Subject: crypto_bench: add support for rc4 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a791e32b15d1cb5ee1809fe27088a712f7b77096;p=ffmpeg crypto_bench: add support for rc4 Reviewed-by: Nicolas George Signed-off-by: James Almer --- diff --git a/tools/crypto_bench.c b/tools/crypto_bench.c index d1e7c300c4e..87e99d056ee 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 #include #include +#include #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)