{
  "slug": "hash-text",
  "name": "gizza-ai/hash-text",
  "version": "0.1.0",
  "title": "Text Hash Generator — MD5, SHA-256, SHA-3, BLAKE3 — gizza.ai",
  "description": "Generate MD5, SHA-1, SHA-256/512, SHA-3, BLAKE2 or BLAKE3 hashes of any text in your browser, with hex or base64 output. Free, private, nothing uploaded.",
  "tags": [
    "hash",
    "md5",
    "sha1",
    "sha256",
    "sha512",
    "sha3",
    "blake2",
    "blake3",
    "checksum",
    "digest",
    "hex",
    "base64",
    "cryptography"
  ],
  "category": "security",
  "urls": {
    "page": "https://gizza.ai/tools/hash-text/",
    "markdown": "https://gizza.ai/tools/hash-text/index.md",
    "descriptor": "https://gizza.ai/tools/hash-text/tool.json",
    "deep_link_example": "https://gizza.ai/tools/hash-text/?text=Hello%2C%20world%21&algorithm=sha256&input_encoding=text&output_format=hex&uppercase=true"
  },
  "cli": "gizza tool hash-text \"Hello, world!\"",
  "tool": {
    "description": "Compute a cryptographic hash of text with a selectable algorithm. Supports MD5, SHA-1, SHA-224, SHA-256 (default), SHA-384, SHA-512, SHA3-256, SHA3-512, BLAKE2b-512, BLAKE2s-256, and BLAKE3. By default the input is hashed as UTF-8 text and the digest is returned as lowercase hex; set input_encoding='hex' or 'base64' to decode the input first, output_format='base64' for a base64 digest, or uppercase=true for uppercase hex. To hash a whole FILE, use the file-hash tool.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "algorithm": {
          "default": "sha256",
          "description": "Hash algorithm.",
          "enum": [
            "md5",
            "sha1",
            "sha224",
            "sha256",
            "sha384",
            "sha512",
            "sha3-256",
            "sha3-512",
            "blake2b-512",
            "blake2s-256",
            "blake3"
          ],
          "type": "string"
        },
        "input_encoding": {
          "default": "text",
          "description": "How to interpret `text` before hashing.",
          "enum": [
            "text",
            "hex",
            "base64"
          ],
          "type": "string"
        },
        "output_format": {
          "default": "hex",
          "description": "Digest representation: hex (default) or base64.",
          "enum": [
            "hex",
            "base64"
          ],
          "type": "string"
        },
        "text": {
          "description": "The text to hash.",
          "type": "string"
        },
        "uppercase": {
          "default": false,
          "description": "Emit uppercase hex (no effect on base64). Default false.",
          "type": "boolean"
        }
      },
      "required": [
        "text"
      ],
      "type": "object"
    }
  }
}