create_null_cipher
Hide a secret message in cover text by selecting letters from words. Choose between using the first letter of each word or every Nth word's first letter to encode your message.
Instructions
Create null cipher text that hides a secret message using letter selection. In 'first_letter' mode, the first letter of each word spells out the secret. In 'nth_word' mode, every Nth word's first letter spells the secret. Returns the generated cipher text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | Yes | Embedding method: 'first_letter' uses the first letter of each word, 'nth_word' uses every Nth word | |
| cover_text | Yes | Cover text to use as source material. Must have enough words for the chosen method. | |
| secret_message | Yes | Secret message to embed (letters only, case-insensitive) |