What it can do
- Hash arbitrary bytes
- Produce a SHA-256 digest
- Repeat the check locally
How the recipe works
SHA2
Process the input through the SHA-256 compression function and render the digest as hex.
Demonstration
Sample input
Serialize keeps workflows visible.Expected result
A 64-character lowercase hexadecimal digest.When to use it
- Integrity checks
- Comparing artifacts
- Learning the difference between hashing and encryption
Adapt it
Normalize line endings and character encoding first when matching a digest generated by another system.
Source and verification
Adapted from University of Oviedo: Cryptography Applications lab. The explanation and sample are written for Serialize, use synthetic or documentation-safe data, and are checked against the current operation catalogue. The workflow runs locally without an external API call.