decrypt_message
Decrypt an AES-256-CBC encrypted message using the passphrase from encryption to retrieve the original text.
Instructions
Decrypt a message that was encrypted with the encrypt_message tool
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| encryptionKey | Yes | The same passphrase used during encryption | |
| encryptedMessage | Yes | The encrypted message (format: iv:ciphertext) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| decryptedMessage | Yes | The decrypted plain-text message |