提交 385be6eb 编写于 作者: B Bodo Möller

Provide fixed seed for parameter generation to speed up -dhe1024.

上级 d91e201e
......@@ -315,6 +315,7 @@ bad:
if (dhe1024)
{
DSA *dsa;
unsigned char seed[20];
if (verbose)
{
......@@ -322,7 +323,8 @@ bad:
fflush(stdout);
}
dsa = DSA_generate_parameters(1024, NULL, 0, NULL, NULL, 0, NULL);
memcpy(seed, "Random String no. 12", 20);
dsa = DSA_generate_parameters(1024, seed, 20, NULL, NULL, 0, NULL);
dh = DSA_dup_DH(dsa);
DSA_free(dsa);
/* important: SSL_OP_SINGLE_DH_USE to avoid small subgroup attacks */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册