rc5test.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /*
  2. * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /*
  10. * This has been a quickly hacked 'ideatest.c'. When I add tests for other
  11. * RC5 modes, more of the code will be uncommented.
  12. */
  13. #include <stdio.h>
  14. #include <string.h>
  15. #include <stdlib.h>
  16. #include "../e_os.h"
  17. #ifdef OPENSSL_NO_RC5
  18. int main(int argc, char *argv[])
  19. {
  20. printf("No RC5 support\n");
  21. return (0);
  22. }
  23. #else
  24. # include <openssl/rc5.h>
  25. static unsigned char RC5key[5][16] = {
  26. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  27. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  28. {0x91, 0x5f, 0x46, 0x19, 0xbe, 0x41, 0xb2, 0x51,
  29. 0x63, 0x55, 0xa5, 0x01, 0x10, 0xa9, 0xce, 0x91},
  30. {0x78, 0x33, 0x48, 0xe7, 0x5a, 0xeb, 0x0f, 0x2f,
  31. 0xd7, 0xb1, 0x69, 0xbb, 0x8d, 0xc1, 0x67, 0x87},
  32. {0xdc, 0x49, 0xdb, 0x13, 0x75, 0xa5, 0x58, 0x4f,
  33. 0x64, 0x85, 0xb4, 0x13, 0xb5, 0xf1, 0x2b, 0xaf},
  34. {0x52, 0x69, 0xf1, 0x49, 0xd4, 0x1b, 0xa0, 0x15,
  35. 0x24, 0x97, 0x57, 0x4d, 0x7f, 0x15, 0x31, 0x25},
  36. };
  37. static unsigned char RC5plain[5][8] = {
  38. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  39. {0x21, 0xA5, 0xDB, 0xEE, 0x15, 0x4B, 0x8F, 0x6D},
  40. {0xF7, 0xC0, 0x13, 0xAC, 0x5B, 0x2B, 0x89, 0x52},
  41. {0x2F, 0x42, 0xB3, 0xB7, 0x03, 0x69, 0xFC, 0x92},
  42. {0x65, 0xC1, 0x78, 0xB2, 0x84, 0xD1, 0x97, 0xCC},
  43. };
  44. static unsigned char RC5cipher[5][8] = {
  45. {0x21, 0xA5, 0xDB, 0xEE, 0x15, 0x4B, 0x8F, 0x6D},
  46. {0xF7, 0xC0, 0x13, 0xAC, 0x5B, 0x2B, 0x89, 0x52},
  47. {0x2F, 0x42, 0xB3, 0xB7, 0x03, 0x69, 0xFC, 0x92},
  48. {0x65, 0xC1, 0x78, 0xB2, 0x84, 0xD1, 0x97, 0xCC},
  49. {0xEB, 0x44, 0xE4, 0x15, 0xDA, 0x31, 0x98, 0x24},
  50. };
  51. # define RC5_CBC_NUM 27
  52. static unsigned char rc5_cbc_cipher[RC5_CBC_NUM][8] = {
  53. {0x7a, 0x7b, 0xba, 0x4d, 0x79, 0x11, 0x1d, 0x1e},
  54. {0x79, 0x7b, 0xba, 0x4d, 0x78, 0x11, 0x1d, 0x1e},
  55. {0x7a, 0x7b, 0xba, 0x4d, 0x79, 0x11, 0x1d, 0x1f},
  56. {0x7a, 0x7b, 0xba, 0x4d, 0x79, 0x11, 0x1d, 0x1f},
  57. {0x8b, 0x9d, 0xed, 0x91, 0xce, 0x77, 0x94, 0xa6},
  58. {0x2f, 0x75, 0x9f, 0xe7, 0xad, 0x86, 0xa3, 0x78},
  59. {0xdc, 0xa2, 0x69, 0x4b, 0xf4, 0x0e, 0x07, 0x88},
  60. {0xdc, 0xa2, 0x69, 0x4b, 0xf4, 0x0e, 0x07, 0x88},
  61. {0xdc, 0xfe, 0x09, 0x85, 0x77, 0xec, 0xa5, 0xff},
  62. {0x96, 0x46, 0xfb, 0x77, 0x63, 0x8f, 0x9c, 0xa8},
  63. {0xb2, 0xb3, 0x20, 0x9d, 0xb6, 0x59, 0x4d, 0xa4},
  64. {0x54, 0x5f, 0x7f, 0x32, 0xa5, 0xfc, 0x38, 0x36},
  65. {0x82, 0x85, 0xe7, 0xc1, 0xb5, 0xbc, 0x74, 0x02},
  66. {0xfc, 0x58, 0x6f, 0x92, 0xf7, 0x08, 0x09, 0x34},
  67. {0xcf, 0x27, 0x0e, 0xf9, 0x71, 0x7f, 0xf7, 0xc4},
  68. {0xe4, 0x93, 0xf1, 0xc1, 0xbb, 0x4d, 0x6e, 0x8c},
  69. {0x5c, 0x4c, 0x04, 0x1e, 0x0f, 0x21, 0x7a, 0xc3},
  70. {0x92, 0x1f, 0x12, 0x48, 0x53, 0x73, 0xb4, 0xf7},
  71. {0x5b, 0xa0, 0xca, 0x6b, 0xbe, 0x7f, 0x5f, 0xad},
  72. {0xc5, 0x33, 0x77, 0x1c, 0xd0, 0x11, 0x0e, 0x63},
  73. {0x29, 0x4d, 0xdb, 0x46, 0xb3, 0x27, 0x8d, 0x60},
  74. {0xda, 0xd6, 0xbd, 0xa9, 0xdf, 0xe8, 0xf7, 0xe8},
  75. {0x97, 0xe0, 0x78, 0x78, 0x37, 0xed, 0x31, 0x7f},
  76. {0x78, 0x75, 0xdb, 0xf6, 0x73, 0x8c, 0x64, 0x78},
  77. {0x8f, 0x34, 0xc3, 0xc6, 0x81, 0xc9, 0x96, 0x95},
  78. {0x7c, 0xb3, 0xf1, 0xdf, 0x34, 0xf9, 0x48, 0x11},
  79. {0x7f, 0xd1, 0xa0, 0x23, 0xa5, 0xbb, 0xa2, 0x17},
  80. };
  81. static unsigned char rc5_cbc_key[RC5_CBC_NUM][17] = {
  82. {1, 0x00},
  83. {1, 0x00},
  84. {1, 0x00},
  85. {1, 0x00},
  86. {1, 0x00},
  87. {1, 0x11},
  88. {1, 0x00},
  89. {4, 0x00, 0x00, 0x00, 0x00},
  90. {1, 0x00},
  91. {1, 0x00},
  92. {1, 0x00},
  93. {1, 0x00},
  94. {4, 0x01, 0x02, 0x03, 0x04},
  95. {4, 0x01, 0x02, 0x03, 0x04},
  96. {4, 0x01, 0x02, 0x03, 0x04},
  97. {8, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  98. {8, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  99. {8, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  100. {8, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  101. {16, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
  102. 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  103. {16, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
  104. 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  105. {16, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
  106. 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  107. {5, 0x01, 0x02, 0x03, 0x04, 0x05},
  108. {5, 0x01, 0x02, 0x03, 0x04, 0x05},
  109. {5, 0x01, 0x02, 0x03, 0x04, 0x05},
  110. {5, 0x01, 0x02, 0x03, 0x04, 0x05},
  111. {5, 0x01, 0x02, 0x03, 0x04, 0x05},
  112. };
  113. static unsigned char rc5_cbc_plain[RC5_CBC_NUM][8] = {
  114. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  115. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  116. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  117. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01},
  118. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  119. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  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. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  124. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  125. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  126. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  127. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  128. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  129. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  130. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  131. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  132. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  133. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  134. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  135. {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80},
  136. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  137. {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
  138. {0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08},
  139. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  140. {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x01},
  141. };
  142. static int rc5_cbc_rounds[RC5_CBC_NUM] = {
  143. 0, 0, 0, 0, 0, 1, 2, 2,
  144. 8, 8, 12, 16, 8, 12, 16, 12,
  145. 8, 12, 16, 8, 12, 16, 12, 8,
  146. 8, 8, 8,
  147. };
  148. static unsigned char rc5_cbc_iv[RC5_CBC_NUM][8] = {
  149. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  150. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  151. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01},
  152. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  153. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  154. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  155. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  156. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  157. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  158. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  159. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  160. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  161. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  162. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  163. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  164. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  165. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  166. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  167. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  168. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  169. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  170. {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08},
  171. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  172. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  173. {0x78, 0x75, 0xdb, 0xf6, 0x73, 0x8c, 0x64, 0x78},
  174. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
  175. {0x7c, 0xb3, 0xf1, 0xdf, 0x34, 0xf9, 0x48, 0x11},
  176. };
  177. int main(int argc, char *argv[])
  178. {
  179. int i, n, err = 0;
  180. RC5_32_KEY key;
  181. unsigned char buf[8], buf2[8], ivb[8];
  182. for (n = 0; n < 5; n++) {
  183. RC5_32_set_key(&key, 16, &(RC5key[n][0]), 12);
  184. RC5_32_ecb_encrypt(&(RC5plain[n][0]), buf, &key, RC5_ENCRYPT);
  185. if (memcmp(&(RC5cipher[n][0]), buf, 8) != 0) {
  186. printf("ecb RC5 error encrypting (%d)\n", n + 1);
  187. printf("got :");
  188. for (i = 0; i < 8; i++)
  189. printf("%02X ", buf[i]);
  190. printf("\n");
  191. printf("expected:");
  192. for (i = 0; i < 8; i++)
  193. printf("%02X ", RC5cipher[n][i]);
  194. err = 20;
  195. printf("\n");
  196. }
  197. RC5_32_ecb_encrypt(buf, buf2, &key, RC5_DECRYPT);
  198. if (memcmp(&(RC5plain[n][0]), buf2, 8) != 0) {
  199. printf("ecb RC5 error decrypting (%d)\n", n + 1);
  200. printf("got :");
  201. for (i = 0; i < 8; i++)
  202. printf("%02X ", buf2[i]);
  203. printf("\n");
  204. printf("expected:");
  205. for (i = 0; i < 8; i++)
  206. printf("%02X ", RC5plain[n][i]);
  207. printf("\n");
  208. err = 3;
  209. }
  210. }
  211. if (err == 0)
  212. printf("ecb RC5 ok\n");
  213. for (n = 0; n < RC5_CBC_NUM; n++) {
  214. i = rc5_cbc_rounds[n];
  215. if (i < 8)
  216. continue;
  217. RC5_32_set_key(&key, rc5_cbc_key[n][0], &(rc5_cbc_key[n][1]), i);
  218. memcpy(ivb, &(rc5_cbc_iv[n][0]), 8);
  219. RC5_32_cbc_encrypt(&(rc5_cbc_plain[n][0]), buf, 8,
  220. &key, &(ivb[0]), RC5_ENCRYPT);
  221. if (memcmp(&(rc5_cbc_cipher[n][0]), buf, 8) != 0) {
  222. printf("cbc RC5 error encrypting (%d)\n", n + 1);
  223. printf("got :");
  224. for (i = 0; i < 8; i++)
  225. printf("%02X ", buf[i]);
  226. printf("\n");
  227. printf("expected:");
  228. for (i = 0; i < 8; i++)
  229. printf("%02X ", rc5_cbc_cipher[n][i]);
  230. err = 30;
  231. printf("\n");
  232. }
  233. memcpy(ivb, &(rc5_cbc_iv[n][0]), 8);
  234. RC5_32_cbc_encrypt(buf, buf2, 8, &key, &(ivb[0]), RC5_DECRYPT);
  235. if (memcmp(&(rc5_cbc_plain[n][0]), buf2, 8) != 0) {
  236. printf("cbc RC5 error decrypting (%d)\n", n + 1);
  237. printf("got :");
  238. for (i = 0; i < 8; i++)
  239. printf("%02X ", buf2[i]);
  240. printf("\n");
  241. printf("expected:");
  242. for (i = 0; i < 8; i++)
  243. printf("%02X ", rc5_cbc_plain[n][i]);
  244. printf("\n");
  245. err = 3;
  246. }
  247. }
  248. if (err == 0)
  249. printf("cbc RC5 ok\n");
  250. EXIT(err);
  251. return (err);
  252. }
  253. #endif