SHA384 Generator

Generate a SHA-384 hash from any text input. Copy or download the hash without sending data anywhere.

Input
Output
0 characters 0 characters

SHA384 Generator

This tool generates a SHA-384 hash from any text you provide. SHA-384 is a member of the SHA-2 family of cryptographic hash functions and produces a fixed 384-bit (96 hexadecimal character) digest regardless of the input length.

The hash is computed locally in your browser using the Web Crypto API. Your input is never uploaded or stored on a server, making this tool suitable for quick verification tasks, integrity checks, and development workflows.

How to use

  1. Type or paste your text into the input editor.
  2. Click Generate to produce the hash digest.
  3. The 96-character hexadecimal hash appears in the output editor.
  4. Use Copy for the clipboard, Download for a text file, or Clear to reset both editors.

What is SHA-384?

SHA-384 (Secure Hash Algorithm 384-bit) is a cryptographic hash function from the SHA-2 family, designed by the NSA and published by NIST. It is closely related to SHA-512 — it uses the same algorithm but produces a truncated 384-bit (48-byte) hash value, represented as a 96-character hexadecimal string.

SHA-384 is used in TLS/SSL certificates, digital signatures, and security protocols where a strong hash is needed but a slightly shorter output than SHA-512 is preferred. It offers a good balance between security strength and performance on 64-bit processors.

Input notes

The tool accepts any text, including Unicode characters, emojis, and multi-line content. Even a small change to the input — such as a single character — produces a completely different hash, a property known as the avalanche effect.

Example

Hashing a short phrase produces a fixed-length 96-character digest:

--- Input Text ---
Hello, World!

--- SHA-384 Hash ---
5485cc9b3365b4305dfb4e8c35e9c0e99cb7a5e8a6e0a70786e874e44c8c2b5f9312e3b64a08a0c4e0d3b9b8c0b3a4c7

--- Hash Length ---
96 characters (384 bits)

MCP integration

MCP (Model Context Protocol) lets AI agents and apps discover and run Coding.Tools utilities for repeatable conversions, formatting, hashing, and generation workflows.

MCP tool name: sha384-generator

MCP endpoint: https://coding.tools/mcp

Call tools/list first. Each tool entry includes inputSchema, outputSchema, and examples so an AI agent or client can build valid arguments without guessing.

For tools/call, read result.content[0].text for the display value and result.structuredContent for machine parsing. Tool-level failures return isError: true; protocol failures return a JSON-RPC error.

Example tools/call request:

curl -s https://coding.tools/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "MCP-Protocol-Version: 2025-06-18" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sha384-generator","arguments":{"input":"release-notes-v1"}}}'

Most text and data tools accept an input string plus optional options. Browser-only image tools are listed for discovery and return a web UI link when they need browser image APIs.