Lines Matching defs:xtea
85 #include "libavutil/xtea.h"
186 static struct AVXTEA *xtea;
187 if (!xtea && !(xtea = av_xtea_alloc()))
189 av_xtea_init(xtea, hardcoded_key);
190 av_xtea_crypt(xtea, output, input, size >> 3, NULL, 0);
355 #include <mbedtls/xtea.h>
434 mbedtls_xtea_context xtea;
436 mbedtls_xtea_init(&xtea);
437 mbedtls_xtea_setup(&xtea, hardcoded_key);
439 mbedtls_xtea_crypt_ecb(&xtea, MBEDTLS_XTEA_ENCRYPT,
441 mbedtls_xtea_free(&xtea);
556 symmetric_key xtea;
559 xtea_setup(hardcoded_key, 16, 0, &xtea);
561 xtea_ecb_encrypt(input + i, output + i, &xtea);
661 IMPL(lavu, "XTEA", xtea, "crc:931fc270")
662 IMPL(mbedcrypto, "XTEA", xtea, "crc:931fc270")
663 IMPL(tomcrypt, "XTEA", xtea, "crc:931fc270")