Lines Matching defs:blowfish
79 #include "libavutil/blowfish.h"
126 static struct AVBlowfish *blowfish;
127 if (!blowfish && !(blowfish = av_blowfish_alloc()))
129 av_blowfish_init(blowfish, hardcoded_key, 16);
130 av_blowfish_crypt(blowfish, output, input, size >> 3, NULL, 0);
204 #include <openssl/blowfish.h>
238 BF_KEY blowfish;
241 BF_set_key(&blowfish, 16, hardcoded_key);
243 BF_ecb_encrypt(input + i, output + i, &blowfish, 1);
327 DEFINE_GCRYPT_CYPHER_WRAPPER(blowfish, BLOWFISH, ECB, 16)
347 #include <mbedtls/blowfish.h>
398 mbedtls_blowfish_context blowfish;
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;
492 blowfish_setup(hardcoded_key, 16, 0, &blowfish);
494 blowfish_ecb_encrypt(input + i, output + i, &blowfish);
655 IMPL_ALL("BLOWFISH", blowfish, "crc:33e8aa74")