提交 90e1b1fd 编写于 作者: D Dr. Stephen Henson

dsa_pub_cmp() doesn't need to check parameters because that is done in

EVP_PKEY_cmp().
上级 86207c19
......@@ -397,8 +397,6 @@ static int dsa_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
static int dsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
{
if (dsa_cmp_parameters(a, b) == 0)
return 0;
if (BN_cmp(b->pkey.dsa->pub_key,a->pkey.dsa->pub_key) != 0)
return 0;
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册