aes_encrypt
Encrypt text using AES encryption with customizable key, padding mode, output format, and encryption mode to securely protect sensitive data.
Instructions
encrypt text with aes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | text to encrypt and decrypt | |
iv | No | iv, default is your-iv-01234567 | your-iv-01234567 |
key | No | encrypt key, default is your-key-0123456 | |
mode | No | mode, default is ECB | ECB |
outputFormat | No | output format, default is base64 | base64 |
padding | No | padding mode, default is Pkcs7 | Pkcs7 |