40 for (i = 0; i < 4; i++)
54 uint32_t
delta = 0x9E3779B9, sum = delta * 32;
56 for (i = 0; i < 32; i++) {
57 v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->
key[(sum >> 11) & 3]);
59 v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->
key[sum & 3]);
67 uint32_t sum = 0,
delta = 0x9E3779B9;
69 for (i = 0; i < 32; i++) {
70 v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->
key[sum & 3]);
72 v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->
key[(sum >> 11) & 3]);
95 for (i = 0; i < 8; i++)
96 dst[i] = src[i] ^ iv[i];
111 #define XTEA_NUM_TESTS 6
113 static const uint8_t xtea_test_key[XTEA_NUM_TESTS][16] = {
114 { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
115 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
116 { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
117 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
118 { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
119 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
120 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
121 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
122 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
123 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
124 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
125 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
128 static const uint8_t xtea_test_pt[XTEA_NUM_TESTS][8] = {
129 { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
130 { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
131 { 0x5a, 0x5b, 0x6e, 0x27, 0x89, 0x48, 0xd7, 0x7f },
132 { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
133 { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
134 { 0x70, 0xe1, 0x22, 0x5d, 0x6e, 0x4e, 0x76, 0x55 }
137 static const uint8_t xtea_test_ct[XTEA_NUM_TESTS][8] = {
138 { 0x49, 0x7d, 0xf3, 0xd0, 0x72, 0x61, 0x2c, 0xb5 },
139 { 0xe7, 0x8f, 0x2d, 0x13, 0x74, 0x43, 0x41, 0xd8 },
140 { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
141 { 0xa0, 0x39, 0x05, 0x89, 0xf8, 0xb8, 0xef, 0xa5 },
142 { 0xed, 0x23, 0x37, 0x5a, 0x82, 0x1a, 0x8c, 0x2d },
143 { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 }
151 if (memcmp(dst, ref, 8*len)) {
153 printf(
"%s failed\ngot ", test);
154 for (i = 0; i < 8*
len; i++)
155 printf(
"%02x ", dst[i]);
156 printf(
"\nexpected ");
157 for (i = 0; i < 8*
len; i++)
158 printf(
"%02x ", ref[i]);
169 const uint8_t src[32] =
"HelloWorldHelloWorldHelloWorld";
173 for (i = 0; i < XTEA_NUM_TESTS; i++) {
176 test_xtea(&ctx, buf, xtea_test_pt[i], xtea_test_ct[i], 1,
NULL, 0,
"encryption");
177 test_xtea(&ctx, buf, xtea_test_ct[i], xtea_test_pt[i], 1,
NULL, 1,
"decryption");
180 memcpy(iv,
"HALLO123", 8);
184 memcpy(iv,
"HALLO123", 8);
185 test_xtea(&ctx, pl, ct, src, 4, iv, 1,
"CBC decryption");
187 memcpy(iv,
"HALLO123", 8);
188 test_xtea(&ctx, ct, ct, src, 4, iv, 1,
"CBC inplace decryption");
190 printf(
"Test encryption/decryption success.\n");
void av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt)
Encrypt or decrypt a buffer using a previously initialized context.
static void xtea_crypt_ecb(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int decrypt, uint8_t *iv)
int main(int argc, char **argv)
void av_xtea_init(AVXTEA *ctx, const uint8_t key[16])
Initialize an AVXTEA context.
Public header for libavutil XTEA algorithm.
static void test(const char *pattern, const char *host)
common internal and external API header