hash-sha256
Generate SHA256 hash for any text input to ensure data integrity. Use this tool for secure hashing needs within the IT Tools MCP Server.
Instructions
Generate SHA256 hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text to hash with SHA256 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to hash with SHA256",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}