vigenere | R Documentation |
Vigenère cipher is a method of encrypting alphabetic text where each letter of the plaintext is encoded with a different Caesar cipher, whose increment is determined by the corresponding letter the key
vigenere(word, key, encrypt = TRUE)
word |
Word or phrase to be encrypted |
key |
character key |
encrypt |
If 'TRUE' (default), the program ciphers the input word, If 'FALSE', the program decrypts it. |
a string
https://en.wikipedia.org/wiki/Vigen
vigenere("hello world", "opla")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.