rsa_test.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. #include <tomcrypt_test.h>
  2. #ifdef LTC_MRSA
  3. #define RSA_MSGSIZE 78
  4. /* These are test keys [see file test.key] that I use to test my import/export against */
  5. static const unsigned char openssl_private_rsa[] = {
  6. 0x30, 0x82, 0x02, 0x5e, 0x02, 0x01, 0x00, 0x02, 0x81, 0x81, 0x00, 0xcf, 0x9a, 0xde, 0x64, 0x8a,
  7. 0xda, 0xc8, 0x33, 0x20, 0xa9, 0xd7, 0x83, 0x31, 0x19, 0x54, 0xb2, 0x9a, 0x85, 0xa7, 0xa1, 0xb7,
  8. 0x75, 0x33, 0xb6, 0xa9, 0xac, 0x84, 0x24, 0xb3, 0xde, 0xdb, 0x7d, 0x85, 0x2d, 0x96, 0x65, 0xe5,
  9. 0x3f, 0x72, 0x95, 0x24, 0x9f, 0x28, 0x68, 0xca, 0x4f, 0xdb, 0x44, 0x1c, 0x3e, 0x60, 0x12, 0x8a,
  10. 0xdd, 0x26, 0xa5, 0xeb, 0xff, 0x0b, 0x5e, 0xd4, 0x88, 0x38, 0x49, 0x2a, 0x6e, 0x5b, 0xbf, 0x12,
  11. 0x37, 0x47, 0xbd, 0x05, 0x6b, 0xbc, 0xdb, 0xf3, 0xee, 0xe4, 0x11, 0x8e, 0x41, 0x68, 0x7c, 0x61,
  12. 0x13, 0xd7, 0x42, 0xc8, 0x80, 0xbe, 0x36, 0x8f, 0xdc, 0x08, 0x8b, 0x4f, 0xac, 0xa4, 0xe2, 0x76,
  13. 0x0c, 0xc9, 0x63, 0x6c, 0x49, 0x58, 0x93, 0xed, 0xcc, 0xaa, 0xdc, 0x25, 0x3b, 0x0a, 0x60, 0x3f,
  14. 0x8b, 0x54, 0x3a, 0xc3, 0x4d, 0x31, 0xe7, 0x94, 0xa4, 0x44, 0xfd, 0x02, 0x03, 0x01, 0x00, 0x01,
  15. 0x02, 0x81, 0x81, 0x00, 0xc8, 0x62, 0xb9, 0xea, 0xde, 0x44, 0x53, 0x1d, 0x56, 0x97, 0xd9, 0x97,
  16. 0x9e, 0x1a, 0xcf, 0x30, 0x1e, 0x0a, 0x88, 0x45, 0x86, 0x29, 0x30, 0xa3, 0x4d, 0x9f, 0x61, 0x65,
  17. 0x73, 0xe0, 0xd6, 0x87, 0x8f, 0xb6, 0xf3, 0x06, 0xa3, 0x82, 0xdc, 0x7c, 0xac, 0xfe, 0x9b, 0x28,
  18. 0x9a, 0xae, 0xfd, 0xfb, 0xfe, 0x2f, 0x0e, 0xd8, 0x97, 0x04, 0xe3, 0xbb, 0x1f, 0xd1, 0xec, 0x0d,
  19. 0xba, 0xa3, 0x49, 0x7f, 0x47, 0xac, 0x8a, 0x44, 0x04, 0x7e, 0x86, 0xb7, 0x39, 0x42, 0x3f, 0xad,
  20. 0x1e, 0xb7, 0x0e, 0xa5, 0x51, 0xf4, 0x40, 0x63, 0x1e, 0xfd, 0xbd, 0xea, 0x9f, 0x41, 0x9f, 0xa8,
  21. 0x90, 0x1d, 0x6f, 0x0a, 0x5a, 0x95, 0x13, 0x11, 0x0d, 0x80, 0xaf, 0x5f, 0x64, 0x98, 0x8a, 0x2c,
  22. 0x78, 0x68, 0x65, 0xb0, 0x2b, 0x8b, 0xa2, 0x53, 0x87, 0xca, 0xf1, 0x64, 0x04, 0xab, 0xf2, 0x7b,
  23. 0xdb, 0x83, 0xc8, 0x81, 0x02, 0x41, 0x00, 0xf7, 0xbe, 0x5e, 0x23, 0xc3, 0x32, 0x3f, 0xbf, 0x8b,
  24. 0x8e, 0x3a, 0xee, 0xfc, 0xfc, 0xcb, 0xe5, 0xf7, 0xf1, 0x0b, 0xbc, 0x42, 0x82, 0xae, 0xd5, 0x7a,
  25. 0x3e, 0xca, 0xf7, 0xd5, 0x69, 0x3f, 0x64, 0x25, 0xa2, 0x1f, 0xb7, 0x75, 0x75, 0x05, 0x92, 0x42,
  26. 0xeb, 0xb8, 0xf1, 0xf3, 0x0a, 0x05, 0xe3, 0x94, 0xd1, 0x55, 0x78, 0x35, 0xa0, 0x36, 0xa0, 0x9b,
  27. 0x7c, 0x92, 0x84, 0x6c, 0xdd, 0xdc, 0x4d, 0x02, 0x41, 0x00, 0xd6, 0x86, 0x0e, 0x85, 0x42, 0x0b,
  28. 0x04, 0x08, 0x84, 0x21, 0x60, 0xf0, 0x0e, 0x0d, 0x88, 0xfd, 0x1e, 0x36, 0x10, 0x65, 0x4f, 0x1e,
  29. 0x53, 0xb4, 0x08, 0x72, 0x80, 0x5c, 0x3f, 0x59, 0x66, 0x17, 0xe6, 0x98, 0xf2, 0xe9, 0x6c, 0x7a,
  30. 0x06, 0x4c, 0xac, 0x76, 0x3d, 0xed, 0x8c, 0xa1, 0xce, 0xad, 0x1b, 0xbd, 0xb4, 0x7d, 0x28, 0xbc,
  31. 0xe3, 0x0e, 0x38, 0x8d, 0x99, 0xd8, 0x05, 0xb5, 0xa3, 0x71, 0x02, 0x40, 0x6d, 0xeb, 0xc3, 0x2d,
  32. 0x2e, 0xf0, 0x5e, 0xa4, 0x88, 0x31, 0x05, 0x29, 0x00, 0x8a, 0xd1, 0x95, 0x29, 0x9b, 0x83, 0xcf,
  33. 0x75, 0xdb, 0x31, 0xe3, 0x7a, 0x27, 0xde, 0x3a, 0x74, 0x30, 0x0c, 0x76, 0x4c, 0xd4, 0x50, 0x2a,
  34. 0x40, 0x2d, 0x39, 0xd9, 0x99, 0x63, 0xa9, 0x5d, 0x80, 0xae, 0x53, 0xca, 0x94, 0x3f, 0x05, 0x23,
  35. 0x1e, 0xf8, 0x05, 0x04, 0xe1, 0xb8, 0x35, 0xf2, 0x17, 0xb3, 0xa0, 0x89, 0x02, 0x41, 0x00, 0xab,
  36. 0x90, 0x88, 0xfa, 0x60, 0x08, 0x29, 0x50, 0x9a, 0x43, 0x8b, 0xa0, 0x50, 0xcc, 0xd8, 0x5a, 0xfe,
  37. 0x97, 0x64, 0x63, 0x71, 0x74, 0x22, 0xa3, 0x20, 0x02, 0x5a, 0xcf, 0xeb, 0xc6, 0x16, 0x95, 0x54,
  38. 0xd1, 0xcb, 0xab, 0x8d, 0x1a, 0xc6, 0x00, 0xfa, 0x08, 0x92, 0x9c, 0x71, 0xd5, 0x52, 0x52, 0x35,
  39. 0x96, 0x71, 0x4b, 0x8b, 0x92, 0x0c, 0xd0, 0xe9, 0xbf, 0xad, 0x63, 0x0b, 0xa5, 0xe9, 0xb1, 0x02,
  40. 0x41, 0x00, 0xdc, 0xcc, 0x27, 0xc8, 0xe4, 0xdc, 0x62, 0x48, 0xd5, 0x9b, 0xaf, 0xf5, 0xab, 0x60,
  41. 0xf6, 0x21, 0xfd, 0x53, 0xe2, 0xb7, 0x5d, 0x09, 0xc9, 0x1a, 0xa1, 0x04, 0xa9, 0xfc, 0x61, 0x2c,
  42. 0x5d, 0x04, 0x58, 0x3a, 0x5a, 0x39, 0xf1, 0x4a, 0x21, 0x56, 0x67, 0xfd, 0xcc, 0x20, 0xa3, 0x8f,
  43. 0x78, 0x18, 0x5a, 0x79, 0x3d, 0x2e, 0x8e, 0x7e, 0x86, 0x0a, 0xe6, 0xa8, 0x33, 0xc1, 0x04, 0x17,
  44. 0x4a, 0x9f, };
  45. /*** openssl public RSA key in DER format */
  46. static const unsigned char openssl_public_rsa[] = {
  47. 0x30, 0x81, 0x9f, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01,
  48. 0x05, 0x00, 0x03, 0x81, 0x8d, 0x00, 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xcf, 0x9a, 0xde,
  49. 0x64, 0x8a, 0xda, 0xc8, 0x33, 0x20, 0xa9, 0xd7, 0x83, 0x31, 0x19, 0x54, 0xb2, 0x9a, 0x85, 0xa7,
  50. 0xa1, 0xb7, 0x75, 0x33, 0xb6, 0xa9, 0xac, 0x84, 0x24, 0xb3, 0xde, 0xdb, 0x7d, 0x85, 0x2d, 0x96,
  51. 0x65, 0xe5, 0x3f, 0x72, 0x95, 0x24, 0x9f, 0x28, 0x68, 0xca, 0x4f, 0xdb, 0x44, 0x1c, 0x3e, 0x60,
  52. 0x12, 0x8a, 0xdd, 0x26, 0xa5, 0xeb, 0xff, 0x0b, 0x5e, 0xd4, 0x88, 0x38, 0x49, 0x2a, 0x6e, 0x5b,
  53. 0xbf, 0x12, 0x37, 0x47, 0xbd, 0x05, 0x6b, 0xbc, 0xdb, 0xf3, 0xee, 0xe4, 0x11, 0x8e, 0x41, 0x68,
  54. 0x7c, 0x61, 0x13, 0xd7, 0x42, 0xc8, 0x80, 0xbe, 0x36, 0x8f, 0xdc, 0x08, 0x8b, 0x4f, 0xac, 0xa4,
  55. 0xe2, 0x76, 0x0c, 0xc9, 0x63, 0x6c, 0x49, 0x58, 0x93, 0xed, 0xcc, 0xaa, 0xdc, 0x25, 0x3b, 0x0a,
  56. 0x60, 0x3f, 0x8b, 0x54, 0x3a, 0xc3, 0x4d, 0x31, 0xe7, 0x94, 0xa4, 0x44, 0xfd, 0x02, 0x03, 0x01,
  57. 0x00, 0x01, };
  58. /* same key but with extra headers stripped */
  59. static const unsigned char openssl_public_rsa_stripped[] = {
  60. 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xcf, 0x9a, 0xde,
  61. 0x64, 0x8a, 0xda, 0xc8, 0x33, 0x20, 0xa9, 0xd7, 0x83, 0x31, 0x19, 0x54, 0xb2, 0x9a, 0x85, 0xa7,
  62. 0xa1, 0xb7, 0x75, 0x33, 0xb6, 0xa9, 0xac, 0x84, 0x24, 0xb3, 0xde, 0xdb, 0x7d, 0x85, 0x2d, 0x96,
  63. 0x65, 0xe5, 0x3f, 0x72, 0x95, 0x24, 0x9f, 0x28, 0x68, 0xca, 0x4f, 0xdb, 0x44, 0x1c, 0x3e, 0x60,
  64. 0x12, 0x8a, 0xdd, 0x26, 0xa5, 0xeb, 0xff, 0x0b, 0x5e, 0xd4, 0x88, 0x38, 0x49, 0x2a, 0x6e, 0x5b,
  65. 0xbf, 0x12, 0x37, 0x47, 0xbd, 0x05, 0x6b, 0xbc, 0xdb, 0xf3, 0xee, 0xe4, 0x11, 0x8e, 0x41, 0x68,
  66. 0x7c, 0x61, 0x13, 0xd7, 0x42, 0xc8, 0x80, 0xbe, 0x36, 0x8f, 0xdc, 0x08, 0x8b, 0x4f, 0xac, 0xa4,
  67. 0xe2, 0x76, 0x0c, 0xc9, 0x63, 0x6c, 0x49, 0x58, 0x93, 0xed, 0xcc, 0xaa, 0xdc, 0x25, 0x3b, 0x0a,
  68. 0x60, 0x3f, 0x8b, 0x54, 0x3a, 0xc3, 0x4d, 0x31, 0xe7, 0x94, 0xa4, 0x44, 0xfd, 0x02, 0x03, 0x01,
  69. 0x00, 0x01, };
  70. static int rsa_compat_test(void)
  71. {
  72. rsa_key key;
  73. unsigned char buf[1024];
  74. unsigned long len;
  75. /* try reading the key */
  76. DO(rsa_import(openssl_private_rsa, sizeof(openssl_private_rsa), &key));
  77. /* now try to export private/public and compare */
  78. len = sizeof(buf);
  79. DO(rsa_export(buf, &len, PK_PRIVATE, &key));
  80. if (len != sizeof(openssl_private_rsa) || memcmp(buf, openssl_private_rsa, len)) {
  81. fprintf(stderr, "RSA private export failed to match OpenSSL output, %lu, %lu\n", len, (unsigned long)sizeof(openssl_private_rsa));
  82. return 1;
  83. }
  84. len = sizeof(buf);
  85. DO(rsa_export(buf, &len, PK_PUBLIC, &key));
  86. if (len != sizeof(openssl_public_rsa_stripped) || memcmp(buf, openssl_public_rsa_stripped, len)) {
  87. fprintf(stderr, "RSA(private) public export failed to match OpenSSL output\n");
  88. return 1;
  89. }
  90. rsa_free(&key);
  91. /* try reading the public key */
  92. DO(rsa_import(openssl_public_rsa_stripped, sizeof(openssl_public_rsa_stripped), &key));
  93. len = sizeof(buf);
  94. DO(rsa_export(buf, &len, PK_PUBLIC, &key));
  95. if (len != sizeof(openssl_public_rsa_stripped) || memcmp(buf, openssl_public_rsa_stripped, len)) {
  96. fprintf(stderr, "RSA(public) stripped public import failed to match OpenSSL output\n");
  97. return 1;
  98. }
  99. rsa_free(&key);
  100. /* try reading the public key */
  101. DO(rsa_import(openssl_public_rsa, sizeof(openssl_public_rsa), &key));
  102. len = sizeof(buf);
  103. DO(rsa_export(buf, &len, PK_PUBLIC, &key));
  104. if (len != sizeof(openssl_public_rsa_stripped) || memcmp(buf, openssl_public_rsa_stripped, len)) {
  105. fprintf(stderr, "RSA(public) SSL public import failed to match OpenSSL output\n");
  106. return 1;
  107. }
  108. rsa_free(&key);
  109. return 0;
  110. }
  111. int rsa_test(void)
  112. {
  113. unsigned char in[1024], out[1024], tmp[1024];
  114. rsa_key key, privKey, pubKey;
  115. int hash_idx, prng_idx, stat, stat2;
  116. unsigned long rsa_msgsize, len, len2, cnt;
  117. static unsigned char lparam[] = { 0x01, 0x02, 0x03, 0x04 };
  118. if (rsa_compat_test() != 0) {
  119. return 1;
  120. }
  121. hash_idx = find_hash("sha1");
  122. prng_idx = find_prng("yarrow");
  123. if (hash_idx == -1 || prng_idx == -1) {
  124. fprintf(stderr, "rsa_test requires LTC_SHA1 and yarrow");
  125. return 1;
  126. }
  127. /* make 10 random key */
  128. for (cnt = 0; cnt < 10; cnt++) {
  129. DO(rsa_make_key(&yarrow_prng, prng_idx, 1024/8, 65537, &key));
  130. if (mp_count_bits(key.N) != 1024) {
  131. fprintf(stderr, "rsa_1024 key modulus has %d bits\n", mp_count_bits(key.N));
  132. len = mp_unsigned_bin_size(key.N);
  133. mp_to_unsigned_bin(key.N, tmp);
  134. fprintf(stderr, "N == \n");
  135. for (cnt = 0; cnt < len; ) {
  136. fprintf(stderr, "%02x ", tmp[cnt]);
  137. if (!(++cnt & 15)) fprintf(stderr, "\n");
  138. }
  139. len = mp_unsigned_bin_size(key.p);
  140. mp_to_unsigned_bin(key.p, tmp);
  141. fprintf(stderr, "p == \n");
  142. for (cnt = 0; cnt < len; ) {
  143. fprintf(stderr, "%02x ", tmp[cnt]);
  144. if (!(++cnt & 15)) fprintf(stderr, "\n");
  145. }
  146. len = mp_unsigned_bin_size(key.q);
  147. mp_to_unsigned_bin(key.q, tmp);
  148. fprintf(stderr, "\nq == \n");
  149. for (cnt = 0; cnt < len; ) {
  150. fprintf(stderr, "%02x ", tmp[cnt]);
  151. if (!(++cnt & 15)) fprintf(stderr, "\n");
  152. }
  153. fprintf(stderr, "\n");
  154. return 1;
  155. }
  156. if (cnt != 9) {
  157. rsa_free(&key);
  158. }
  159. }
  160. /* encrypt the key (without lparam) */
  161. for (cnt = 0; cnt < 4; cnt++) {
  162. for (rsa_msgsize = 1; rsa_msgsize <= 86; rsa_msgsize++) {
  163. /* make a random key/msg */
  164. yarrow_read(in, rsa_msgsize, &yarrow_prng);
  165. len = sizeof(out);
  166. len2 = rsa_msgsize;
  167. DO(rsa_encrypt_key(in, rsa_msgsize, out, &len, NULL, 0, &yarrow_prng, prng_idx, hash_idx, &key));
  168. /* change a byte */
  169. out[8] ^= 1;
  170. DO(rsa_decrypt_key(out, len, tmp, &len2, NULL, 0, hash_idx, &stat2, &key));
  171. /* change a byte back */
  172. out[8] ^= 1;
  173. if (len2 != rsa_msgsize) {
  174. fprintf(stderr, "\nrsa_decrypt_key mismatch len %lu (first decrypt)", len2);
  175. return 1;
  176. }
  177. len2 = rsa_msgsize;
  178. DO(rsa_decrypt_key(out, len, tmp, &len2, NULL, 0, hash_idx, &stat, &key));
  179. if (!(stat == 1 && stat2 == 0)) {
  180. fprintf(stderr, "rsa_decrypt_key failed");
  181. return 1;
  182. }
  183. if (len2 != rsa_msgsize || memcmp(tmp, in, rsa_msgsize)) {
  184. unsigned long x;
  185. fprintf(stderr, "\nrsa_decrypt_key mismatch, len %lu (second decrypt)\n", len2);
  186. fprintf(stderr, "Original contents: \n");
  187. for (x = 0; x < rsa_msgsize; ) {
  188. fprintf(stderr, "%02x ", in[x]);
  189. if (!(++x % 16)) {
  190. fprintf(stderr, "\n");
  191. }
  192. }
  193. fprintf(stderr, "\n");
  194. fprintf(stderr, "Output contents: \n");
  195. for (x = 0; x < rsa_msgsize; ) {
  196. fprintf(stderr, "%02x ", out[x]);
  197. if (!(++x % 16)) {
  198. fprintf(stderr, "\n");
  199. }
  200. }
  201. fprintf(stderr, "\n");
  202. return 1;
  203. }
  204. }
  205. }
  206. /* encrypt the key (with lparam) */
  207. for (rsa_msgsize = 1; rsa_msgsize <= 86; rsa_msgsize++) {
  208. len = sizeof(out);
  209. len2 = rsa_msgsize;
  210. DO(rsa_encrypt_key(in, rsa_msgsize, out, &len, lparam, sizeof(lparam), &yarrow_prng, prng_idx, hash_idx, &key));
  211. /* change a byte */
  212. out[8] ^= 1;
  213. DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat2, &key));
  214. if (len2 != rsa_msgsize) {
  215. fprintf(stderr, "\nrsa_decrypt_key mismatch len %lu (first decrypt)", len2);
  216. return 1;
  217. }
  218. /* change a byte back */
  219. out[8] ^= 1;
  220. len2 = rsa_msgsize;
  221. DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat, &key));
  222. if (!(stat == 1 && stat2 == 0)) {
  223. fprintf(stderr, "rsa_decrypt_key failed");
  224. return 1;
  225. }
  226. if (len2 != rsa_msgsize || memcmp(tmp, in, rsa_msgsize)) {
  227. fprintf(stderr, "rsa_decrypt_key mismatch len %lu", len2);
  228. return 1;
  229. }
  230. }
  231. /* encrypt the key LTC_PKCS #1 v1.5 (payload from 1 to 117 bytes) */
  232. for (rsa_msgsize = 1; rsa_msgsize <= 117; rsa_msgsize++) {
  233. len = sizeof(out);
  234. len2 = rsa_msgsize;
  235. DO(rsa_encrypt_key_ex(in, rsa_msgsize, out, &len, NULL, 0, &yarrow_prng, prng_idx, 0, LTC_LTC_PKCS_1_V1_5, &key));
  236. len2 = rsa_msgsize;
  237. DO(rsa_decrypt_key_ex(out, len, tmp, &len2, NULL, 0, 0, LTC_LTC_PKCS_1_V1_5, &stat, &key));
  238. if (!(stat == 1 && stat2 == 0)) {
  239. fprintf(stderr, "rsa_decrypt_key_ex failed, %d, %d", stat, stat2);
  240. return 1;
  241. }
  242. if (len2 != rsa_msgsize || memcmp(tmp, in, rsa_msgsize)) {
  243. fprintf(stderr, "rsa_decrypt_key_ex mismatch len %lu", len2);
  244. return 1;
  245. }
  246. }
  247. /* sign a message (unsalted, lower cholestorol and Atkins approved) now */
  248. len = sizeof(out);
  249. DO(rsa_sign_hash(in, 20, out, &len, &yarrow_prng, prng_idx, hash_idx, 0, &key));
  250. /* export key and import as both private and public */
  251. len2 = sizeof(tmp);
  252. DO(rsa_export(tmp, &len2, PK_PRIVATE, &key));
  253. DO(rsa_import(tmp, len2, &privKey));
  254. len2 = sizeof(tmp);
  255. DO(rsa_export(tmp, &len2, PK_PUBLIC, &key));
  256. DO(rsa_import(tmp, len2, &pubKey));
  257. /* verify with original */
  258. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &key));
  259. /* change a byte */
  260. in[0] ^= 1;
  261. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat2, &key));
  262. if (!(stat == 1 && stat2 == 0)) {
  263. fprintf(stderr, "rsa_verify_hash (unsalted, origKey) failed, %d, %d", stat, stat2);
  264. rsa_free(&key);
  265. rsa_free(&pubKey);
  266. rsa_free(&privKey);
  267. return 1;
  268. }
  269. /* verify with privKey */
  270. /* change a byte */
  271. in[0] ^= 1;
  272. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &privKey));
  273. /* change a byte */
  274. in[0] ^= 1;
  275. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat2, &privKey));
  276. if (!(stat == 1 && stat2 == 0)) {
  277. fprintf(stderr, "rsa_verify_hash (unsalted, privKey) failed, %d, %d", stat, stat2);
  278. rsa_free(&key);
  279. rsa_free(&pubKey);
  280. rsa_free(&privKey);
  281. return 1;
  282. }
  283. /* verify with pubKey */
  284. /* change a byte */
  285. in[0] ^= 1;
  286. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &pubKey));
  287. /* change a byte */
  288. in[0] ^= 1;
  289. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat2, &pubKey));
  290. if (!(stat == 1 && stat2 == 0)) {
  291. fprintf(stderr, "rsa_verify_hash (unsalted, pubkey) failed, %d, %d", stat, stat2);
  292. rsa_free(&key);
  293. rsa_free(&pubKey);
  294. rsa_free(&privKey);
  295. return 1;
  296. }
  297. /* sign a message (salted) now (use privKey to make, pubKey to verify) */
  298. len = sizeof(out);
  299. DO(rsa_sign_hash(in, 20, out, &len, &yarrow_prng, prng_idx, hash_idx, 8, &privKey));
  300. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 8, &stat, &pubKey));
  301. /* change a byte */
  302. in[0] ^= 1;
  303. DO(rsa_verify_hash(out, len, in, 20, hash_idx, 8, &stat2, &pubKey));
  304. if (!(stat == 1 && stat2 == 0)) {
  305. fprintf(stderr, "rsa_verify_hash (salted) failed, %d, %d", stat, stat2);
  306. rsa_free(&key);
  307. rsa_free(&pubKey);
  308. rsa_free(&privKey);
  309. return 1;
  310. }
  311. /* sign a message with LTC_PKCS #1 v1.5 */
  312. len = sizeof(out);
  313. DO(rsa_sign_hash_ex(in, 20, out, &len, LTC_LTC_PKCS_1_V1_5, &yarrow_prng, prng_idx, hash_idx, 8, &privKey));
  314. DO(rsa_verify_hash_ex(out, len, in, 20, LTC_LTC_PKCS_1_V1_5, hash_idx, 8, &stat, &pubKey));
  315. /* change a byte */
  316. in[0] ^= 1;
  317. DO(rsa_verify_hash_ex(out, len, in, 20, LTC_LTC_PKCS_1_V1_5, hash_idx, 8, &stat2, &pubKey));
  318. if (!(stat == 1 && stat2 == 0)) {
  319. fprintf(stderr, "rsa_verify_hash_ex failed, %d, %d", stat, stat2);
  320. rsa_free(&key);
  321. rsa_free(&pubKey);
  322. rsa_free(&privKey);
  323. return 1;
  324. }
  325. /* free the key and return */
  326. rsa_free(&key);
  327. rsa_free(&pubKey);
  328. rsa_free(&privKey);
  329. return 0;
  330. }
  331. #else
  332. int rsa_test(void)
  333. {
  334. fprintf(stderr, "NOP");
  335. return 0;
  336. }
  337. #endif
  338. /* $Source$ */
  339. /* $Revision$ */
  340. /* $Date$ */