Commit 9f9f962d authored by Richard Levitte's avatar Richard Levitte
Browse files

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



RT#4674

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 06a79af2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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