Lines Matching refs:xtea
186 static struct AVXTEA *xtea; in run_lavu_xtea() local
187 if (!xtea && !(xtea = av_xtea_alloc())) in run_lavu_xtea()
189 av_xtea_init(xtea, hardcoded_key); in run_lavu_xtea()
190 av_xtea_crypt(xtea, output, input, size >> 3, NULL, 0); in run_lavu_xtea()
434 mbedtls_xtea_context xtea; in run_mbedcrypto_xtea() local
436 mbedtls_xtea_init(&xtea); in run_mbedcrypto_xtea()
437 mbedtls_xtea_setup(&xtea, hardcoded_key); in run_mbedcrypto_xtea()
439 mbedtls_xtea_crypt_ecb(&xtea, MBEDTLS_XTEA_ENCRYPT, in run_mbedcrypto_xtea()
441 mbedtls_xtea_free(&xtea); in run_mbedcrypto_xtea()
556 symmetric_key xtea; in run_tomcrypt_xtea() local
559 xtea_setup(hardcoded_key, 16, 0, &xtea); in run_tomcrypt_xtea()
561 xtea_ecb_encrypt(input + i, output + i, &xtea); in run_tomcrypt_xtea()
661 IMPL(lavu, "XTEA", xtea, "crc:931fc270")
662 IMPL(mbedcrypto, "XTEA", xtea, "crc:931fc270")
663 IMPL(tomcrypt, "XTEA", xtea, "crc:931fc270")