gencertbuf.pl 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. #!/usr/bin/perl
  2. # gencertbuf.pl
  3. # version 1.1
  4. # Updated 07/01/2014
  5. #
  6. # Copyright (C) 2006-2015 wolfSSL Inc.
  7. #
  8. use strict;
  9. use warnings;
  10. # ---- SCRIPT SETTINGS -------------------------------------------------------
  11. # output C header file to write cert/key buffers to
  12. my $outputFile = "./wolfssl/certs_test.h";
  13. # ecc keys and certs to be converted
  14. # Used with HAVE_ECC && USE_CERT_BUFFERS_256
  15. my @fileList_ecc = (
  16. [ "./certs/ecc-client-key.der", "ecc_clikey_der_256" ],
  17. [ "./certs/ecc-client-keyPub.der", "ecc_clikeypub_der_256" ],
  18. [ "./certs/client-ecc-cert.der", "cliecc_cert_der_256" ],
  19. [ "./certs/ecc-key.der", "ecc_key_der_256" ],
  20. [ "./certs/ecc-keyPub.der", "ecc_key_pub_der_256" ],
  21. [ "./certs/server-ecc-comp.der", "serv_ecc_comp_der_256" ],
  22. [ "./certs/server-ecc-rsa.der", "serv_ecc_rsa_der_256" ],
  23. [ "./certs/server-ecc.der", "serv_ecc_der_256" ],
  24. [ "./certs/ca-ecc-key.der", "ca_ecc_key_der_256" ],
  25. [ "./certs/ca-ecc-cert.der", "ca_ecc_cert_der_256" ],
  26. [ "./certs/ca-ecc384-key.der", "ca_ecc_key_der_384" ],
  27. [ "./certs/ca-ecc384-cert.der", "ca_ecc_cert_der_384" ]
  28. );
  29. # ed25519 keys and certs
  30. # Used with HAVE_ED25519 define.
  31. my @fileList_ed = (
  32. [ "./certs/ed25519/server-ed25519.der", "server_ed25519_cert" ],
  33. [ "./certs/ed25519/server-ed25519-key.der", "server_ed25519_key" ],
  34. [ "./certs/ed25519/ca-ed25519.der", "ca_ed25519_cert" ],
  35. [ "./certs/ed25519/client-ed25519.der", "client_ed25519_cert" ],
  36. [ "./certs/ed25519/client-ed25519-key.der", "client_ed25519_key" ]
  37. );
  38. # 1024-bit certs/keys to be converted
  39. # Used with USE_CERT_BUFFERS_1024 define.
  40. my @fileList_1024 = (
  41. [ "./certs/1024/client-key.der", "client_key_der_1024" ],
  42. [ "./certs/1024/client-keyPub.der", "client_keypub_der_1024" ],
  43. [ "./certs/1024/client-cert.der", "client_cert_der_1024" ],
  44. [ "./certs/1024/dh1024.der", "dh_key_der_1024" ],
  45. [ "./certs/1024/dsa1024.der", "dsa_key_der_1024" ],
  46. [ "./certs/1024/rsa1024.der", "rsa_key_der_1024" ],
  47. [ "./certs/1024/ca-key.der", "ca_key_der_1024"],
  48. [ "./certs/1024/ca-cert.der", "ca_cert_der_1024" ],
  49. [ "./certs/1024/server-key.der", "server_key_der_1024" ],
  50. [ "./certs/1024/server-cert.der", "server_cert_der_1024" ]
  51. );
  52. # 2048-bit certs/keys to be converted
  53. # Used with USE_CERT_BUFFERS_2048 define.
  54. my @fileList_2048 = (
  55. [ "./certs/client-key.der", "client_key_der_2048" ],
  56. [ "./certs/client-keyPub.der", "client_keypub_der_2048" ],
  57. [ "./certs/client-cert.der", "client_cert_der_2048" ],
  58. [ "./certs/dh2048.der", "dh_key_der_2048" ],
  59. [ "./certs/dh-pubkey-2048.der", "dh_pub_key_der_2048" ],
  60. [ "./certs/dsa-pubkey-2048.der", "dsa_pub_key_der_2048" ],
  61. [ "./certs/dsa2048.der", "dsa_key_der_2048" ],
  62. [ "./certs/rsa2048.der", "rsa_key_der_2048" ],
  63. [ "./certs/ca-key.der", "ca_key_der_2048" ],
  64. [ "./certs/ca-cert.der", "ca_cert_der_2048" ],
  65. [ "./certs/ca-cert-chain.der", "ca_cert_chain_der" ],
  66. [ "./certs/server-key.der", "server_key_der_2048" ],
  67. [ "./certs/server-cert.der", "server_cert_der_2048" ]
  68. );
  69. # 3072-bit certs/keys to be converted
  70. # Used with USE_CERT_BUFFERS_3072 define.
  71. my @fileList_3072 = (
  72. [ "./certs/dh3072.der", "dh_key_der_3072" ],
  73. [ "./certs/dsa3072.der", "dsa_key_der_3072" ],
  74. [ "./certs/rsa3072.der", "rsa_key_der_3072" ],
  75. [ "./certs/3072/client-key.der", "client_key_der_3072" ],
  76. [ "./certs/3072/client-keyPub.der", "client_keypub_der_3072" ],
  77. [ "./certs/3072/client-cert.der", "client_cert_der_3072" ],
  78. );
  79. # 4096-bit certs/keys to be converted
  80. # Used with USE_CERT_BUFFERS_4096 define.
  81. my @fileList_4096 = (
  82. [ "./certs/4096/client-key.der", "client_key_der_4096" ],
  83. [ "./certs/4096/client-keyPub.der", "client_keypub_der_4096" ],
  84. [ "./certs/4096/client-cert.der", "client_cert_der_4096" ],
  85. [ "./certs/dh4096.der", "dh_key_der_4096" ],
  86. );
  87. #Falcon Post-Quantum Keys
  88. #Used with HAVE_PQC
  89. my @fileList_falcon = (
  90. ["certs/falcon/bench_falcon_level1_key.der", "bench_falcon_level1_key" ],
  91. ["certs/falcon/bench_falcon_level5_key.der", "bench_falcon_level5_key" ],
  92. );
  93. #Dilithium Post-Quantum Keys
  94. #Used with HAVE_PQC
  95. my @fileList_dilithium = (
  96. ["certs/dilithium/bench_dilithium_level2_key.der", "bench_dilithium_level2_key" ],
  97. ["certs/dilithium/bench_dilithium_level3_key.der", "bench_dilithium_level3_key" ],
  98. ["certs/dilithium/bench_dilithium_level5_key.der", "bench_dilithium_level5_key" ],
  99. );
  100. #Sphincs+ Post-Quantum Keys
  101. #Used with HAVE_PQC
  102. my @fileList_sphincs = (
  103. ["certs/sphincs/bench_sphincs_fast_level1_key.der", "bench_sphincs_fast_level1_key" ],
  104. ["certs/sphincs/bench_sphincs_fast_level3_key.der", "bench_sphincs_fast_level3_key" ],
  105. ["certs/sphincs/bench_sphincs_fast_level5_key.der", "bench_sphincs_fast_level5_key" ],
  106. ["certs/sphincs/bench_sphincs_small_level1_key.der", "bench_sphincs_small_level1_key" ],
  107. ["certs/sphincs/bench_sphincs_small_level3_key.der", "bench_sphincs_small_level3_key" ],
  108. ["certs/sphincs/bench_sphincs_small_level5_key.der", "bench_sphincs_small_level5_key" ],
  109. );
  110. # ----------------------------------------------------------------------------
  111. my $num_ecc = @fileList_ecc;
  112. my $num_ed = @fileList_ed;
  113. my $num_1024 = @fileList_1024;
  114. my $num_2048 = @fileList_2048;
  115. my $num_3072 = @fileList_3072;
  116. my $num_4096 = @fileList_4096;
  117. my $num_falcon = @fileList_falcon;
  118. my $num_dilithium = @fileList_dilithium;
  119. my $num_sphincs = @fileList_sphincs;
  120. # open our output file, "+>" creates and/or truncates
  121. open OUT_FILE, "+>", $outputFile or die $!;
  122. print OUT_FILE "/* certs_test.h */\n";
  123. print OUT_FILE "/* This file was generated using: ./gencertbuf.pl */\n\n";
  124. print OUT_FILE "#ifndef WOLFSSL_CERTS_TEST_H\n";
  125. print OUT_FILE "#define WOLFSSL_CERTS_TEST_H\n\n";
  126. # convert and print 1024-bit cert/keys
  127. print OUT_FILE "#ifdef USE_CERT_BUFFERS_1024\n\n";
  128. for (my $i = 0; $i < $num_1024; $i++) {
  129. my $fname = $fileList_1024[$i][0];
  130. my $sname = $fileList_1024[$i][1];
  131. print OUT_FILE "/* $fname, 1024-bit */\n";
  132. print OUT_FILE "static const unsigned char $sname\[] =\n";
  133. print OUT_FILE "{\n";
  134. file_to_hex($fname);
  135. print OUT_FILE "};\n";
  136. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  137. }
  138. print OUT_FILE "#endif /* USE_CERT_BUFFERS_1024 */\n\n";
  139. # convert and print 2048-bit certs/keys
  140. print OUT_FILE "#ifdef USE_CERT_BUFFERS_2048\n\n";
  141. for (my $i = 0; $i < $num_2048; $i++) {
  142. my $fname = $fileList_2048[$i][0];
  143. my $sname = $fileList_2048[$i][1];
  144. print OUT_FILE "/* $fname, 2048-bit */\n";
  145. print OUT_FILE "static const unsigned char $sname\[] =\n";
  146. print OUT_FILE "{\n";
  147. file_to_hex($fname);
  148. print OUT_FILE "};\n";
  149. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  150. }
  151. print OUT_FILE "#endif /* USE_CERT_BUFFERS_2048 */\n\n";
  152. # convert and print 3072-bit certs/keys
  153. print OUT_FILE "#ifdef USE_CERT_BUFFERS_3072\n\n";
  154. for (my $i = 0; $i < $num_3072; $i++) {
  155. my $fname = $fileList_3072[$i][0];
  156. my $sname = $fileList_3072[$i][1];
  157. print OUT_FILE "/* $fname, 3072-bit */\n";
  158. print OUT_FILE "static const unsigned char $sname\[] =\n";
  159. print OUT_FILE "{\n";
  160. file_to_hex($fname);
  161. print OUT_FILE "};\n";
  162. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  163. }
  164. print OUT_FILE "#endif /* USE_CERT_BUFFERS_3072 */\n\n";
  165. # convert and print 4096-bit certs/keys
  166. print OUT_FILE "#ifdef USE_CERT_BUFFERS_4096\n\n";
  167. for (my $i = 0; $i < $num_4096; $i++) {
  168. my $fname = $fileList_4096[$i][0];
  169. my $sname = $fileList_4096[$i][1];
  170. print OUT_FILE "/* $fname, 4096-bit */\n";
  171. print OUT_FILE "static const unsigned char $sname\[] =\n";
  172. print OUT_FILE "{\n";
  173. file_to_hex($fname);
  174. print OUT_FILE "};\n";
  175. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  176. }
  177. print OUT_FILE "#endif /* USE_CERT_BUFFERS_4096 */\n\n";
  178. # convert and print falcon keys
  179. print OUT_FILE "#if defined(HAVE_PQC) && defined(HAVE_FALCON)\n\n";
  180. for (my $i = 0; $i < $num_falcon; $i++) {
  181. my $fname = $fileList_falcon[$i][0];
  182. my $sname = $fileList_falcon[$i][1];
  183. print OUT_FILE "/* $fname */\n";
  184. print OUT_FILE "static const unsigned char $sname\[] =\n";
  185. print OUT_FILE "{\n";
  186. file_to_hex($fname);
  187. print OUT_FILE "};\n";
  188. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  189. }
  190. print OUT_FILE "#endif /* HAVE_PQC && HAVE_FALCON */\n\n";
  191. # convert and print dilithium keys
  192. print OUT_FILE "#if defined (HAVE_PQC) && defined(HAVE_DILITHIUM)\n\n";
  193. for (my $i = 0; $i < $num_dilithium; $i++) {
  194. my $fname = $fileList_dilithium[$i][0];
  195. my $sname = $fileList_dilithium[$i][1];
  196. print OUT_FILE "/* $fname */\n";
  197. print OUT_FILE "static const unsigned char $sname\[] =\n";
  198. print OUT_FILE "{\n";
  199. file_to_hex($fname);
  200. print OUT_FILE "};\n";
  201. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  202. }
  203. print OUT_FILE "#endif /* HAVE_PQC && HAVE_DILITHIUM */\n\n";
  204. # convert and print sphincs keys
  205. print OUT_FILE "#if defined(HAVE_PQC) && defined(HAVE_SPHINCS)\n\n";
  206. for (my $i = 0; $i < $num_sphincs; $i++) {
  207. my $fname = $fileList_sphincs[$i][0];
  208. my $sname = $fileList_sphincs[$i][1];
  209. print OUT_FILE "/* $fname */\n";
  210. print OUT_FILE "static const unsigned char $sname\[] =\n";
  211. print OUT_FILE "{\n";
  212. file_to_hex($fname);
  213. print OUT_FILE "};\n";
  214. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  215. }
  216. print OUT_FILE "#endif /* HAVE_PQC && HAVE_SPHINCS */\n\n";
  217. # convert and print 256-bit cert/keys
  218. print OUT_FILE "#if defined(HAVE_ECC) && defined(USE_CERT_BUFFERS_256)\n\n";
  219. for (my $i = 0; $i < $num_ecc; $i++) {
  220. my $fname = $fileList_ecc[$i][0];
  221. my $sname = $fileList_ecc[$i][1];
  222. print OUT_FILE "/* $fname, ECC */\n";
  223. print OUT_FILE "static const unsigned char $sname\[] =\n";
  224. print OUT_FILE "{\n";
  225. file_to_hex($fname);
  226. print OUT_FILE "};\n";
  227. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  228. }
  229. print OUT_FILE "#endif /* HAVE_ECC && USE_CERT_BUFFERS_256 */\n\n";
  230. print OUT_FILE "/* dh1024 p */
  231. static const unsigned char dh_p[] =
  232. {
  233. 0xE6, 0x96, 0x9D, 0x3D, 0x49, 0x5B, 0xE3, 0x2C, 0x7C, 0xF1, 0x80, 0xC3,
  234. 0xBD, 0xD4, 0x79, 0x8E, 0x91, 0xB7, 0x81, 0x82, 0x51, 0xBB, 0x05, 0x5E,
  235. 0x2A, 0x20, 0x64, 0x90, 0x4A, 0x79, 0xA7, 0x70, 0xFA, 0x15, 0xA2, 0x59,
  236. 0xCB, 0xD5, 0x23, 0xA6, 0xA6, 0xEF, 0x09, 0xC4, 0x30, 0x48, 0xD5, 0xA2,
  237. 0x2F, 0x97, 0x1F, 0x3C, 0x20, 0x12, 0x9B, 0x48, 0x00, 0x0E, 0x6E, 0xDD,
  238. 0x06, 0x1C, 0xBC, 0x05, 0x3E, 0x37, 0x1D, 0x79, 0x4E, 0x53, 0x27, 0xDF,
  239. 0x61, 0x1E, 0xBB, 0xBE, 0x1B, 0xAC, 0x9B, 0x5C, 0x60, 0x44, 0xCF, 0x02,
  240. 0x3D, 0x76, 0xE0, 0x5E, 0xEA, 0x9B, 0xAD, 0x99, 0x1B, 0x13, 0xA6, 0x3C,
  241. 0x97, 0x4E, 0x9E, 0xF1, 0x83, 0x9E, 0xB5, 0xDB, 0x12, 0x51, 0x36, 0xF7,
  242. 0x26, 0x2E, 0x56, 0xA8, 0x87, 0x15, 0x38, 0xDF, 0xD8, 0x23, 0xC6, 0x50,
  243. 0x50, 0x85, 0xE2, 0x1F, 0x0D, 0xD5, 0xC8, 0x6B,
  244. };
  245. /* dh1024 g */
  246. static const unsigned char dh_g[] =
  247. {
  248. 0x02,
  249. };\n\n";
  250. print OUT_FILE "#if defined(NO_ASN) && defined(WOLFSSL_SP_MATH)\n";
  251. print OUT_FILE "/* dh2048 p */
  252. static const unsigned char dh2048_p[] =
  253. {
  254. 0xb0, 0xa1, 0x08, 0x06, 0x9c, 0x08, 0x13, 0xba, 0x59, 0x06, 0x3c, 0xbc,
  255. 0x30, 0xd5, 0xf5, 0x00, 0xc1, 0x4f, 0x44, 0xa7, 0xd6, 0xef, 0x4a, 0xc6,
  256. 0x25, 0x27, 0x1c, 0xe8, 0xd2, 0x96, 0x53, 0x0a, 0x5c, 0x91, 0xdd, 0xa2,
  257. 0xc2, 0x94, 0x84, 0xbf, 0x7d, 0xb2, 0x44, 0x9f, 0x9b, 0xd2, 0xc1, 0x8a,
  258. 0xc5, 0xbe, 0x72, 0x5c, 0xa7, 0xe7, 0x91, 0xe6, 0xd4, 0x9f, 0x73, 0x07,
  259. 0x85, 0x5b, 0x66, 0x48, 0xc7, 0x70, 0xfa, 0xb4, 0xee, 0x02, 0xc9, 0x3d,
  260. 0x9a, 0x4a, 0xda, 0x3d, 0xc1, 0x46, 0x3e, 0x19, 0x69, 0xd1, 0x17, 0x46,
  261. 0x07, 0xa3, 0x4d, 0x9f, 0x2b, 0x96, 0x17, 0x39, 0x6d, 0x30, 0x8d, 0x2a,
  262. 0xf3, 0x94, 0xd3, 0x75, 0xcf, 0xa0, 0x75, 0xe6, 0xf2, 0x92, 0x1f, 0x1a,
  263. 0x70, 0x05, 0xaa, 0x04, 0x83, 0x57, 0x30, 0xfb, 0xda, 0x76, 0x93, 0x38,
  264. 0x50, 0xe8, 0x27, 0xfd, 0x63, 0xee, 0x3c, 0xe5, 0xb7, 0xc8, 0x09, 0xae,
  265. 0x6f, 0x50, 0x35, 0x8e, 0x84, 0xce, 0x4a, 0x00, 0xe9, 0x12, 0x7e, 0x5a,
  266. 0x31, 0xd7, 0x33, 0xfc, 0x21, 0x13, 0x76, 0xcc, 0x16, 0x30, 0xdb, 0x0c,
  267. 0xfc, 0xc5, 0x62, 0xa7, 0x35, 0xb8, 0xef, 0xb7, 0xb0, 0xac, 0xc0, 0x36,
  268. 0xf6, 0xd9, 0xc9, 0x46, 0x48, 0xf9, 0x40, 0x90, 0x00, 0x2b, 0x1b, 0xaa,
  269. 0x6c, 0xe3, 0x1a, 0xc3, 0x0b, 0x03, 0x9e, 0x1b, 0xc2, 0x46, 0xe4, 0x48,
  270. 0x4e, 0x22, 0x73, 0x6f, 0xc3, 0x5f, 0xd4, 0x9a, 0xd6, 0x30, 0x07, 0x48,
  271. 0xd6, 0x8c, 0x90, 0xab, 0xd4, 0xf6, 0xf1, 0xe3, 0x48, 0xd3, 0x58, 0x4b,
  272. 0xa6, 0xb9, 0xcd, 0x29, 0xbf, 0x68, 0x1f, 0x08, 0x4b, 0x63, 0x86, 0x2f,
  273. 0x5c, 0x6b, 0xd6, 0xb6, 0x06, 0x65, 0xf7, 0xa6, 0xdc, 0x00, 0x67, 0x6b,
  274. 0xbb, 0xc3, 0xa9, 0x41, 0x83, 0xfb, 0xc7, 0xfa, 0xc8, 0xe2, 0x1e, 0x7e,
  275. 0xaf, 0x00, 0x3f, 0x93
  276. };
  277. /* dh2048 g */
  278. static const unsigned char dh2048_g[] =
  279. {
  280. 0x02,
  281. };\n";
  282. print OUT_FILE "#endif\n\n";
  283. # convert and print ed25519 cert/keys
  284. print OUT_FILE "#if defined(HAVE_ED25519)\n\n";
  285. for (my $i = 0; $i < $num_ed; $i++) {
  286. my $fname = $fileList_ed[$i][0];
  287. my $sname = $fileList_ed[$i][1];
  288. print OUT_FILE "/* $fname, ED25519 */\n";
  289. print OUT_FILE "static const unsigned char $sname\[] =\n";
  290. print OUT_FILE "{\n";
  291. file_to_hex($fname);
  292. print OUT_FILE "};\n";
  293. print OUT_FILE "static const int sizeof_$sname = sizeof($sname);\n\n";
  294. }
  295. print OUT_FILE "#endif /* HAVE_ED25519 */\n\n";
  296. print OUT_FILE "#endif /* WOLFSSL_CERTS_TEST_H */\n\n";
  297. # close certs_test.h file
  298. close OUT_FILE or die $!;
  299. # print file as hex, comma-separated, as needed by C buffer
  300. sub file_to_hex {
  301. my $fileName = $_[0];
  302. open my $fp, "<", $fileName or die $!;
  303. binmode($fp);
  304. my $fileLen = -s $fileName;
  305. my $byte;
  306. for (my $i = 0, my $j = 1; $i < $fileLen; $i++, $j++)
  307. {
  308. if ($j == 1) {
  309. print OUT_FILE " ";
  310. }
  311. if ($j != 1) {
  312. print OUT_FILE " ";
  313. }
  314. read($fp, $byte, 1) or die "Error reading $fileName";
  315. my $output = sprintf("0x%02X", ord($byte));
  316. print OUT_FILE $output;
  317. if ($i != ($fileLen - 1)) {
  318. print OUT_FILE ",";
  319. }
  320. if ($j == 10) {
  321. $j = 0;
  322. print OUT_FILE "\n";
  323. }
  324. }
  325. print OUT_FILE "\n";
  326. close($fp);
  327. }