Crypto_MCP

by 1595901624
Verified

aes_encrypt

Encrypt text using AES algorithm with customizable key, IV, mode, padding, and output format for secure data handling.

Instructions

encrypt text with aes

Input Schema

NameRequiredDescriptionDefault
contentYestext to encrypt and decrypt
ivNoiv, default is your-iv-01234567your-iv-01234567
keyNoencrypt key, default is your-key-0123456
modeNomode, default is ECBECB
outputFormatNooutput format, default is base64base64
paddingNopadding mode, default is Pkcs7Pkcs7

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "text to encrypt and decrypt", "type": "string" }, "iv": { "default": "your-iv-01234567", "description": "iv, default is your-iv-01234567", "type": "string" }, "key": { "description": "encrypt key, default is your-key-0123456", "type": "string" }, "mode": { "default": "ECB", "description": "mode, default is ECB", "type": "string" }, "outputFormat": { "default": "base64", "description": "output format, default is base64", "enum": [ "base64", "hex" ], "type": "string" }, "padding": { "default": "Pkcs7", "description": "padding mode, default is Pkcs7", "enum": [ "Pkcs7", "Iso97971", "AnsiX923", "Iso10126", "ZeroPadding", "NoPadding" ], "type": "string" } }, "required": [ "content" ], "type": "object" }

You must be authenticated.

Other Tools from Crypto_MCP

Related Tools

ID: e9xj0jkg5y