What the hash generator does
A hash is a one-way digest; it does not decrypt. SHA-256 is stable for the same input; bcrypt differs each time because of salt — that is expected.
Generation happens on this request; IPTOOL does not store the text. Prefer bcrypt for passwords and SHA-256 for file integrity.
Examples
- File fingerprint
SHA-256(text)Must match on two machines.- Password
bcryptTwo runs differ; verify with the library.