SHA-512/224 Hash Generator

Free online SHA-512/224 hash generator. Compute SHA-512/224 truncated digests for text and files instantly in your browser.

Text mode — hashes your input as UTF-8 characters

Best for strings, passwords, JSON, and code. Need to verify a download against a published checksum? Switch to and drop the file in — text mode cannot reproduce a file checksum.

0 bytes (UTF-8)
SHA-2224-bit

Enter text above to generate SHA-512/224 hash

Text encoded as UTF-8 · All processing is local

Related Hash Generators

Need all algorithms at once? Open the full Hash Generator for every supported algorithm.

What is SHA-512/224?

SHA-512/224 is a truncated variant of SHA-512 defined in FIPS 180-4. It produces a 224-bit digest while using the SHA-512 compression function with different initial values. It is part of the SHA-2 family for applications that need a 224-bit output with SHA-512 internals.

Common use cases:

  • FIPS-compliant systems specifying SHA-512/224
  • Cryptographic library test vector validation
  • Protocols requiring truncated SHA-512 variants
  • Security audits referencing NIST SHA-2 profiles

Examples

InputSHA-512/224 Hash
Eazytools4ufcd5af3ee754c57c3b33e20202093b77619c98a4f96a2045e7d3522f
abc4634270f707b6a54daae7530460842e20e37ed265ceee9a43e8924aa
hellofe8509ed1fb7dcefc27e6ac1a80eddbec4cb3d2c6fe565244374061c

Programming Examples

Node.js
const crypto = require("crypto");

const hash = crypto.createHash("sha512-224")
  .update("hello", "utf8")
  .digest("hex");

console.log(hash); // SHA-512/224 hex digest
Python
import hashlib

digest = hashlib.sha512_224(b"hello").hexdigest()
print(digest)  # SHA-512/224 hex digest
OpenSSL CLI
echo -n "hello" | openssl dgst -sha512-224 -hex

Frequently Asked Questions

How is SHA-512/224 different from SHA-224?

Both produce 224-bit digests but use different internal structures. SHA-224 is based on SHA-256; SHA-512/224 is based on SHA-512. They produce different hashes for the same input.

When is SHA-512/224 used?

It appears in NIST standards and some specialized protocols. Most general applications use SHA-256 or SHA-512 instead.

Is this algorithm secure?

Yes. It inherits the security properties of SHA-512 with a truncated output.

Does File mode upload my data?

No. File hashing is performed entirely in your browser.

← Back to all hash algorithms