<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">On any new install of our software we generate new dh parameters as follows…<div class=""><br class=""></div><div class=""><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class=""><span style="color: #33a2bd" class="">DH</span> *dh = DH_new();</div><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class="">!DH_generate_parameters_ex(dh, 2048, 2, <span style="color: rgb(132, 33, 156);" class="">NULL</span>);</div><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class=""><span style="color: rgb(4, 51, 255);" class="">int</span> codes = 0;</div><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class="">DH_check(dh, &codes);</div><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class="">DH_generate_key(dh);</div><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class=""><br class=""></div></div><div style="margin: 0px; font-size: 9.5px; line-height: normal;" class="">It takes a long time. Is there some way to have it use all available cores instead of just the one?</div></div></body></html>