You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
5.8KB

  1. /*
  2. * A 32-bit implementation of the XTEA algorithm
  3. * Copyright (c) 2012 Samuel Pitoiset
  4. *
  5. * loosely based on the implementation of David Wheeler and Roger Needham
  6. *
  7. * This file is part of Libav.
  8. *
  9. * Libav is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * Libav is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with Libav; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * @brief XTEA 32-bit implementation
  26. * @author Samuel Pitoiset
  27. * @ingroup lavu_xtea
  28. */
  29. #include "avutil.h"
  30. #include "common.h"
  31. #include "intreadwrite.h"
  32. #include "xtea.h"
  33. void av_xtea_init(AVXTEA *ctx, const uint8_t key[16])
  34. {
  35. int i;
  36. for (i = 0; i < 4; i++)
  37. ctx->key[i] = AV_RB32(key + (i << 2));
  38. }
  39. static void xtea_crypt_ecb(AVXTEA *ctx, uint8_t *dst, const uint8_t *src,
  40. int decrypt, uint8_t *iv)
  41. {
  42. uint32_t v0, v1;
  43. int i;
  44. v0 = AV_RB32(src);
  45. v1 = AV_RB32(src + 4);
  46. if (decrypt) {
  47. uint32_t delta = 0x9E3779B9, sum = delta * 32;
  48. for (i = 0; i < 32; i++) {
  49. v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->key[(sum >> 11) & 3]);
  50. sum -= delta;
  51. v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->key[sum & 3]);
  52. }
  53. if (iv) {
  54. v0 ^= AV_RB32(iv);
  55. v1 ^= AV_RB32(iv + 4);
  56. memcpy(iv, src, 8);
  57. }
  58. } else {
  59. uint32_t sum = 0, delta = 0x9E3779B9;
  60. for (i = 0; i < 32; i++) {
  61. v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->key[sum & 3]);
  62. sum += delta;
  63. v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->key[(sum >> 11) & 3]);
  64. }
  65. }
  66. AV_WB32(dst, v0);
  67. AV_WB32(dst + 4, v1);
  68. }
  69. void av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
  70. uint8_t *iv, int decrypt)
  71. {
  72. int i;
  73. if (decrypt) {
  74. while (count--) {
  75. xtea_crypt_ecb(ctx, dst, src, decrypt, iv);
  76. src += 8;
  77. dst += 8;
  78. }
  79. } else {
  80. while (count--) {
  81. if (iv) {
  82. for (i = 0; i < 8; i++)
  83. dst[i] = src[i] ^ iv[i];
  84. xtea_crypt_ecb(ctx, dst, dst, decrypt, NULL);
  85. memcpy(iv, dst, 8);
  86. } else {
  87. xtea_crypt_ecb(ctx, dst, src, decrypt, NULL);
  88. }
  89. src += 8;
  90. dst += 8;
  91. }
  92. }
  93. }
  94. #ifdef TEST
  95. #include <stdio.h>
  96. #define XTEA_NUM_TESTS 6
  97. static const uint8_t xtea_test_key[XTEA_NUM_TESTS][16] = {
  98. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  99. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
  100. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  101. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
  102. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  103. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
  104. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  105. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
  106. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  107. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
  108. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  109. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  110. };
  111. static const uint8_t xtea_test_pt[XTEA_NUM_TESTS][8] = {
  112. { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
  113. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
  114. { 0x5a, 0x5b, 0x6e, 0x27, 0x89, 0x48, 0xd7, 0x7f },
  115. { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
  116. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
  117. { 0x70, 0xe1, 0x22, 0x5d, 0x6e, 0x4e, 0x76, 0x55 }
  118. };
  119. static const uint8_t xtea_test_ct[XTEA_NUM_TESTS][8] = {
  120. { 0x49, 0x7d, 0xf3, 0xd0, 0x72, 0x61, 0x2c, 0xb5 },
  121. { 0xe7, 0x8f, 0x2d, 0x13, 0x74, 0x43, 0x41, 0xd8 },
  122. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
  123. { 0xa0, 0x39, 0x05, 0x89, 0xf8, 0xb8, 0xef, 0xa5 },
  124. { 0xed, 0x23, 0x37, 0x5a, 0x82, 0x1a, 0x8c, 0x2d },
  125. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 }
  126. };
  127. static void test_xtea(AVXTEA *ctx, uint8_t *dst, const uint8_t *src,
  128. const uint8_t *ref, int len, uint8_t *iv, int dir,
  129. const char *test)
  130. {
  131. av_xtea_crypt(ctx, dst, src, len, iv, dir);
  132. if (memcmp(dst, ref, 8*len)) {
  133. int i;
  134. printf("%s failed\ngot ", test);
  135. for (i = 0; i < 8*len; i++)
  136. printf("%02x ", dst[i]);
  137. printf("\nexpected ");
  138. for (i = 0; i < 8*len; i++)
  139. printf("%02x ", ref[i]);
  140. printf("\n");
  141. exit(1);
  142. }
  143. }
  144. int main(void)
  145. {
  146. AVXTEA ctx;
  147. uint8_t buf[8], iv[8];
  148. int i;
  149. const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
  150. uint8_t ct[32];
  151. uint8_t pl[32];
  152. for (i = 0; i < XTEA_NUM_TESTS; i++) {
  153. av_xtea_init(&ctx, xtea_test_key[i]);
  154. test_xtea(&ctx, buf, xtea_test_pt[i], xtea_test_ct[i], 1, NULL, 0, "encryption");
  155. test_xtea(&ctx, buf, xtea_test_ct[i], xtea_test_pt[i], 1, NULL, 1, "decryption");
  156. /* encrypt */
  157. memcpy(iv, "HALLO123", 8);
  158. av_xtea_crypt(&ctx, ct, src, 4, iv, 0);
  159. /* decrypt into pl */
  160. memcpy(iv, "HALLO123", 8);
  161. test_xtea(&ctx, pl, ct, src, 4, iv, 1, "CBC decryption");
  162. memcpy(iv, "HALLO123", 8);
  163. test_xtea(&ctx, ct, ct, src, 4, iv, 1, "CBC inplace decryption");
  164. }
  165. printf("Test encryption/decryption success.\n");
  166. return 0;
  167. }
  168. #endif