Heads-up
MD5 and SHA-1 are weak for password storage. Use bcrypt (or Argon2 if available) for credentials.
Cheat Sheet
MD5 / SHA-1 / SHA-256: fast, deterministic digests. Good for file integrity checks, NOT for passwords. bcrypt: slow, salted password hashing. Verify with:
password_verify($plain, $hash).
PHP snippets
Create bcrypt: $hash = password_hash($plain, PASSWORD_BCRYPT, ['cost' => 10]);
Verify: if (password_verify($plain, $hash)) { /* ok */ }
Cookies & privacy
Utilities Bunker uses necessary cookies to run the site. Optional cookies help remember preferences,
measure usage, and improve the platform. You can change your choices any time.
Privacy Policy.