caesar_encrypt
Encrypts plaintext by shifting letters with the Caesar cipher, using a customizable shift value, and returns the ciphertext in JSON.
Instructions
Encrypt plaintext using Caesar cipher.
Args: plaintext: Text to encrypt shift: Number of positions to shift (default: 3)
Returns: JSON with encrypted ciphertext
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| plaintext | Yes | ||
| shift | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |