sha384
Generate SHA-384 hash for any input string to ensure cryptographic integrity using the Crypto_MCP server.
Instructions
Calculate SHA-384 hash of a string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | The input string to hash |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input": {
"description": "The input string to hash",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}