6 min read
2026-03-05
Downloaded an ISO image or program? Calculate SHA-256 and compare with the checksum on the developer's website.
Never store passwords in clear text. Hash them with salt when registering and compare hashes when logging in.
Calculate the hash of each file - equal hashes mean equal content, allowing you to find duplicates.
The hash of the file's contents is used as a cache key - when the file changes, the hash changes and the cache is invalidated.
The hash of the document is signed with a private key, which allows you to confirm authorship and integrity.
Each block contains a hash of the previous one, forming an immutable chain.
Git uses SHA-1 to identify commits, trees, and objects in a repository.
See also: Password generator, UUID generator, Test data generator