提交 9f9f962d 编写于 作者: R Richard Levitte

Fix 'openssl passwd' with arguments -1 or -apr1

RT#4674
Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 06a79af2
......@@ -319,6 +319,7 @@ static char *md5crypt(const char *passwd, const char *magic, const char *salt)
|| !EVP_DigestUpdate(md, magic, magic_len)
|| !EVP_DigestUpdate(md, "$", 1)
|| !EVP_DigestUpdate(md, salt_out, salt_len))
goto err;
md2 = EVP_MD_CTX_new();
if (md2 == NULL
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册