Lines Matching refs:blowfish
126 static struct AVBlowfish *blowfish; in run_lavu_blowfish() local
127 if (!blowfish && !(blowfish = av_blowfish_alloc())) in run_lavu_blowfish()
129 av_blowfish_init(blowfish, hardcoded_key, 16); in run_lavu_blowfish()
130 av_blowfish_crypt(blowfish, output, input, size >> 3, NULL, 0); in run_lavu_blowfish()
238 BF_KEY blowfish; in run_crypto_blowfish() local
241 BF_set_key(&blowfish, 16, hardcoded_key); in run_crypto_blowfish()
243 BF_ecb_encrypt(input + i, output + i, &blowfish, 1); in run_crypto_blowfish()
327 DEFINE_GCRYPT_CYPHER_WRAPPER(blowfish, BLOWFISH, ECB, 16)
398 mbedtls_blowfish_context blowfish; local
400 mbedtls_blowfish_init(&blowfish);
401 mbedtls_blowfish_setkey(&blowfish, hardcoded_key, 128);
403 mbedtls_blowfish_crypt_ecb(&blowfish, MBEDTLS_BLOWFISH_ENCRYPT,
405 mbedtls_blowfish_free(&blowfish);
489 symmetric_key blowfish; in run_tomcrypt_blowfish() local
492 blowfish_setup(hardcoded_key, 16, 0, &blowfish); in run_tomcrypt_blowfish()
494 blowfish_ecb_encrypt(input + i, output + i, &blowfish); in run_tomcrypt_blowfish()
655 IMPL_ALL("BLOWFISH", blowfish, "crc:33e8aa74")