Commit 9fd47a03 authored by Richard Levitte's avatar Richard Levitte Committed by Richard Levitte
Browse files

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



RT#4674

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(cherry picked from commit 9f9f962d)
parent 8ff785f4
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