aes_encrypt
Encrypt plaintext using AES-256-CBC with a key hashed to 256 bits. Returns hex-encoded IV and ciphertext for secure data handling.
Instructions
[PRO — 3 trial uses left] Encrypt text using AES-256-CBC. Returns hex-encoded IV + ciphertext. Use a strong key (will be hashed to 256 bits internally).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Encryption key (any string — will be SHA-256 hashed to derive 256-bit key) | |
| text | Yes | Plaintext to encrypt |