LookupThis

Password Encryption.

Hash text with common algorithms.

About Password Encryption

Hashing converts input text into a fixed-length string. Unlike encryption, hashing is one-way — you can't reverse it. Common algorithms: MD5 (weak, legacy), SHA-256 (standard), bcrypt (password-specific, slow by design).

Questions