cast5.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * An implementation of the CAST128 algorithm as mentioned in RFC2144
  3. * Copyright (c) 2014 Supraja Meedinti
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/cast5.h"
  22. #include "libavutil/log.h"
  23. int main(int argc, char** argv)
  24. {
  25. static const uint8_t Key[3][16] = {
  26. {0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9a},
  27. {0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, 0x23, 0x45},
  28. {0x01, 0x23, 0x45, 0x67, 0x12}
  29. };
  30. static const uint8_t rpt[8] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef};
  31. static const uint8_t rct[3][8] = {
  32. {0x23, 0x8b, 0x4f, 0xe5, 0x84, 0x7e, 0x44, 0xb2},
  33. {0xeb, 0x6a, 0x71, 0x1a, 0x2c, 0x02, 0x27, 0x1b},
  34. {0x7a, 0xc8, 0x16, 0xd1, 0x6e, 0x9b, 0x30, 0x2e}
  35. };
  36. static const uint8_t rct2[2][16] = {
  37. {0xee, 0xa9, 0xd0, 0xa2, 0x49, 0xfd, 0x3b, 0xa6, 0xb3, 0x43, 0x6f, 0xb8, 0x9d, 0x6d, 0xca, 0x92},
  38. {0xb2, 0xc9, 0x5e, 0xb0, 0x0c, 0x31, 0xad, 0x71, 0x80, 0xac, 0x05, 0xb8, 0xe8, 0x3d, 0x69, 0x6e}
  39. };
  40. static const uint8_t iv[8] = {0xee, 0xa9, 0xd0, 0xa2, 0x49, 0xfd, 0x3b, 0xa6};
  41. static uint8_t rpt2[2][16];
  42. int i, j, err = 0;
  43. static const int key_bits[3] = {128, 80, 40};
  44. uint8_t temp[8];
  45. struct AVCAST5 *cs;
  46. cs = av_cast5_alloc();
  47. if (!cs)
  48. return 1;
  49. for (j = 0; j < 3; j++){
  50. av_cast5_init(cs, Key[j], key_bits[j]);
  51. av_cast5_crypt(cs, temp, rpt, 1, 0);
  52. for (i = 0;i < 8; i++){
  53. if (rct[j][i] != temp[i]){
  54. av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct[j][i], temp[i]);
  55. err = 1;
  56. }
  57. }
  58. av_cast5_crypt(cs, temp, rct[j], 1, 1);
  59. for (i =0; i < 8; i++) {
  60. if (rpt[i] != temp[i]) {
  61. av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]);
  62. err = 1;
  63. }
  64. }
  65. }
  66. memcpy(rpt2[0], Key[0], 16);
  67. memcpy(rpt2[1], Key[0], 16);
  68. for (i = 0; i < 1000000; i++){
  69. av_cast5_init(cs, rpt2[1], 128);
  70. av_cast5_crypt(cs, rpt2[0], rpt2[0], 2, 0);
  71. av_cast5_init(cs, rpt2[0], 128);
  72. av_cast5_crypt(cs, rpt2[1], rpt2[1], 2, 0);
  73. }
  74. for (j = 0; j < 2; j++) {
  75. for (i = 0; i < 16; i++) {
  76. if (rct2[j][i] != rpt2[j][i]) {
  77. av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct2[j][i], rpt2[j][i]);
  78. err = 1;
  79. }
  80. }
  81. }
  82. for (j = 0; j < 3; j++) {
  83. av_cast5_init(cs, Key[j], key_bits[j]);
  84. memcpy(temp, iv, 8);
  85. av_cast5_crypt2(cs, rpt2[0], rct2[0], 2, temp, 0);
  86. memcpy(temp, iv, 8);
  87. av_cast5_crypt2(cs, rpt2[0], rpt2[0], 2, temp, 1);
  88. for (i = 0; i < 16; i++) {
  89. if (rct2[0][i] != rpt2[0][i]) {
  90. av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rct2[0][i], rpt2[0][i]);
  91. err = 1;
  92. }
  93. }
  94. }
  95. av_free(cs);
  96. return err;
  97. }