deepsourcestatus / test-repository

Audit required: Use of an insecure hashing function PHP-A1004
Security
Critical
8 months ago8 months old
Use of insecure md5() function found
10
11    public function encryptPassword(string $password): string
12    {
13        return md5($password);14    }
15
16    public function setUser(string|array|string $data): void