Lines Matching defs:hardcoded_key
55 static const uint8_t *hardcoded_key = "FFmpeg is the best program ever.";
119 av_aes_init(aes, hardcoded_key, 128, 0);
129 av_blowfish_init(blowfish, hardcoded_key, 16);
139 av_camellia_init(camellia, hardcoded_key, 128);
149 av_cast5_init(cast, hardcoded_key, 128);
159 av_des_init(des, hardcoded_key, 64, 0);
169 av_twofish_init(twofish, hardcoded_key, 128);
179 av_rc4_init(rc4, hardcoded_key, 128, 0);
189 av_xtea_init(xtea, hardcoded_key);
229 AES_set_encrypt_key(hardcoded_key, 128, &aes);
241 BF_set_key(&blowfish, 16, hardcoded_key);
252 Camellia_set_key(hardcoded_key, 128, &camellia);
264 CAST_set_key(&cast, 16, hardcoded_key);
275 DES_set_key(hardcoded_key, &des);
285 RC4_set_key(&rc4, 16, hardcoded_key);
322 gcry_cipher_setkey(suffix, hardcoded_key, sz); \
385 mbedtls_ ## cypher ## _setkey_enc(&cypher, hardcoded_key, 128); \
401 mbedtls_blowfish_setkey(&blowfish, hardcoded_key, 128);
414 mbedtls_des_setkey_enc(&des, hardcoded_key);
426 mbedtls_arc4_setup(&rc4, hardcoded_key, 16);
437 mbedtls_xtea_setup(&xtea, hardcoded_key);
480 aes_setup(hardcoded_key, 16, 0, &aes);
492 blowfish_setup(hardcoded_key, 16, 0, &blowfish);
503 camellia_setup(hardcoded_key, 16, 0, &camellia);
515 cast5_setup(hardcoded_key, 16, 0, &cast);
526 des_setup(hardcoded_key, 8, 0, &des);
536 rc4_stream_setup(&rc4, hardcoded_key, 16);
547 twofish_setup(hardcoded_key, 16, 0, &twofish);
559 xtea_setup(hardcoded_key, 16, 0, &xtea);