Questions tagged [whirlpool]

Rijmen and Barreto collaborated to create Whirlpool, a cryptographic hashing algorithm.

Inquiry regarding the encryption methods I am using

After implementing a login system, I took steps to enhance its security. First, I generated a salt for the passwords: $salt = openssl_random_pseudo_bytes(1024); file_put_contents("salt.txt", $salt); Then, I hashed the passwords using the whirlpool algori ...