2 * A 32-bit implementation of the TEA algorithm
3 * Copyright (c) 2015 Vesselin Bontchev
5 * Loosely based on the implementation of David Wheeler and Roger Needham,
6 * https://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm#Reference_code
8 * This file is part of FFmpeg.
10 * FFmpeg is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * FFmpeg is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with FFmpeg; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "intreadwrite.h"
30 typedef struct AVTEA {
35 struct AVTEA *av_tea_alloc(void)
37 return av_mallocz(sizeof(struct AVTEA));
40 const int av_tea_size = sizeof(AVTEA);
42 void av_tea_init(AVTEA *ctx, const uint8_t key[16], int rounds)
46 for (i = 0; i < 4; i++)
47 ctx->key[i] = AV_RB32(key + (i << 2));
52 static void tea_crypt_ecb(AVTEA *ctx, uint8_t *dst, const uint8_t *src,
53 int decrypt, uint8_t *iv)
56 int rounds = ctx->rounds;
57 uint32_t k0, k1, k2, k3;
64 v1 = AV_RB32(src + 4);
68 uint32_t delta = 0x9E3779B9U, sum = delta * (rounds / 2);
70 for (i = 0; i < rounds / 2; i++) {
71 v1 -= ((v0 << 4) + k2) ^ (v0 + sum) ^ ((v0 >> 5) + k3);
72 v0 -= ((v1 << 4) + k0) ^ (v1 + sum) ^ ((v1 >> 5) + k1);
77 v1 ^= AV_RB32(iv + 4);
82 uint32_t sum = 0, delta = 0x9E3779B9U;
84 for (i = 0; i < rounds / 2; i++) {
86 v0 += ((v1 << 4) + k0) ^ (v1 + sum) ^ ((v1 >> 5) + k1);
87 v1 += ((v0 << 4) + k2) ^ (v0 + sum) ^ ((v0 >> 5) + k3);
95 void av_tea_crypt(AVTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
96 uint8_t *iv, int decrypt)
102 tea_crypt_ecb(ctx, dst, src, decrypt, iv);
110 for (i = 0; i < 8; i++)
111 dst[i] = src[i] ^ iv[i];
112 tea_crypt_ecb(ctx, dst, dst, decrypt, NULL);
115 tea_crypt_ecb(ctx, dst, src, decrypt, NULL);