Lines Matching refs:twofish
166 static struct AVTWOFISH *twofish; in run_lavu_twofish() local
167 if (!twofish && !(twofish = av_twofish_alloc())) in run_lavu_twofish()
169 av_twofish_init(twofish, hardcoded_key, 128); in run_lavu_twofish()
170 av_twofish_crypt(twofish, output, input, size >> 4, NULL, 0); in run_lavu_twofish()
331 DEFINE_GCRYPT_CYPHER_WRAPPER(twofish, TWOFISH128, ECB, 16)
544 symmetric_key twofish; in run_tomcrypt_twofish() local
547 twofish_setup(hardcoded_key, 16, 0, &twofish); in run_tomcrypt_twofish()
550 twofish_ecb_encrypt(input + i, output + i, &twofish); in run_tomcrypt_twofish()
657 IMPL(lavu, "TWOFISH", twofish, "crc:9edbd5c1")
658 IMPL(gcrypt, "TWOFISH", twofish, "crc:9edbd5c1")
659 IMPL(tomcrypt, "TWOFISH", twofish, "crc:9edbd5c1")