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.

169 lines
5.0KB

  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. #include "libavutil/intreadwrite.h"
  24. #include "avutil.h"
  25. #include "common.h"
  26. #include "xtea.h"
  27. void av_xtea_init(AVXTEA *ctx, const uint8_t key[16])
  28. {
  29. int i;
  30. for (i = 0; i < 4; i++)
  31. ctx->key[i] = AV_RB32(key + (i << 2));
  32. }
  33. static void xtea_crypt_ecb(AVXTEA *ctx, uint8_t *dst, const uint8_t *src,
  34. int decrypt)
  35. {
  36. uint32_t v0, v1;
  37. int i;
  38. v0 = AV_RB32(src);
  39. v1 = AV_RB32(src + 4);
  40. if (decrypt) {
  41. uint32_t delta = 0x9E3779B9, sum = delta * 32;
  42. for (i = 0; i < 32; i++) {
  43. v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->key[(sum >> 11) & 3]);
  44. sum -= delta;
  45. v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->key[sum & 3]);
  46. }
  47. } else {
  48. uint32_t sum = 0, delta = 0x9E3779B9;
  49. for (i = 0; i < 32; i++) {
  50. v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + ctx->key[sum & 3]);
  51. sum += delta;
  52. v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + ctx->key[(sum >> 11) & 3]);
  53. }
  54. }
  55. AV_WB32(dst, v0);
  56. AV_WB32(dst + 4, v1);
  57. }
  58. void av_xtea_crypt(AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count,
  59. uint8_t *iv, int decrypt)
  60. {
  61. int i;
  62. if (decrypt) {
  63. while (count--) {
  64. xtea_crypt_ecb(ctx, dst, src, decrypt);
  65. if (iv) {
  66. for (i = 0; i < 8; i++)
  67. dst[i] = dst[i] ^ iv[i];
  68. memcpy(iv, src, 8);
  69. }
  70. src += 8;
  71. dst += 8;
  72. }
  73. } else {
  74. while (count--) {
  75. if (iv) {
  76. for (i = 0; i < 8; i++)
  77. dst[i] = src[i] ^ iv[i];
  78. xtea_crypt_ecb(ctx, dst, dst, decrypt);
  79. memcpy(iv, dst, 8);
  80. } else {
  81. xtea_crypt_ecb(ctx, dst, src, decrypt);
  82. }
  83. src += 8;
  84. dst += 8;
  85. }
  86. }
  87. }
  88. #ifdef TEST
  89. #include <stdio.h>
  90. #undef printf
  91. #define XTEA_NUM_TESTS 6
  92. static const uint8_t xtea_test_key[XTEA_NUM_TESTS][16] = {
  93. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  94. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
  95. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  96. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
  97. { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  98. 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
  99. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  100. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
  101. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  102. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
  103. { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  104. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  105. };
  106. static const uint8_t xtea_test_pt[XTEA_NUM_TESTS][8] = {
  107. { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
  108. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
  109. { 0x5a, 0x5b, 0x6e, 0x27, 0x89, 0x48, 0xd7, 0x7f },
  110. { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 },
  111. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
  112. { 0x70, 0xe1, 0x22, 0x5d, 0x6e, 0x4e, 0x76, 0x55 }
  113. };
  114. static const uint8_t xtea_test_ct[XTEA_NUM_TESTS][8] = {
  115. { 0x49, 0x7d, 0xf3, 0xd0, 0x72, 0x61, 0x2c, 0xb5 },
  116. { 0xe7, 0x8f, 0x2d, 0x13, 0x74, 0x43, 0x41, 0xd8 },
  117. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 },
  118. { 0xa0, 0x39, 0x05, 0x89, 0xf8, 0xb8, 0xef, 0xa5 },
  119. { 0xed, 0x23, 0x37, 0x5a, 0x82, 0x1a, 0x8c, 0x2d },
  120. { 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41 }
  121. };
  122. int main(void)
  123. {
  124. AVXTEA ctx;
  125. uint8_t buf[8];
  126. int i;
  127. for (i = 0; i < XTEA_NUM_TESTS; i++) {
  128. av_xtea_init(&ctx, xtea_test_key[i]);
  129. av_xtea_crypt(&ctx, buf, xtea_test_pt[i], 1, NULL, 0);
  130. if (memcmp(buf, xtea_test_ct[i], 8)) {
  131. printf("Test encryption failed.\n");
  132. return 1;
  133. }
  134. av_xtea_crypt(&ctx, buf, xtea_test_ct[i], 1, NULL, 1);
  135. if (memcmp(buf, xtea_test_pt[i], 8)) {
  136. printf("Test decryption failed.\n");
  137. return 1;
  138. }
  139. }
  140. printf("Test encryption/decryption success.\n");
  141. return 0;
  142. }
  143. #endif