View | Details | Raw Unified | Return to bug 20370
Collapse All | Expand All

(-)a/Koha/AuthUtils.pm (-2 / +1 lines)
Lines 64-70 sub hash_password { Link Here
64
    # Set the cost to 8 and append a NULL
64
    # Set the cost to 8 and append a NULL
65
        $settings = '$2a$08$'.en_base64(generate_salt('weak', 16));
65
        $settings = '$2a$08$'.en_base64(generate_salt('weak', 16));
66
    }
66
    }
67
    # Encrypt it
67
    # Hash it
68
    return bcrypt($password, $settings);
68
    return bcrypt($password, $settings);
69
}
69
}
70
70
71
- 

Return to bug 20370