vigenere_encrypt
Encrypt plaintext using Vigenère cipher with a given key. Optionally validate key strength. Outputs ciphertext as JSON.
Instructions
Encrypt plaintext using Vigenère cipher.
Args: plaintext: Text to encrypt key: Encryption key (letters only) validate: Whether to validate key strength (default: True)
Returns: JSON with encrypted ciphertext
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| plaintext | Yes | ||
| key | Yes | ||
| validate | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |