Vigenèrecipher
Please note that these tools aren't optimized for large amounts of data, processing can slow down or run into problems once you reach above 150,000
characters. A cap of 1 million characters is currently in place.
Vigenère cipher
One of the most well known cipher methods. Each letter of the message is shifted by a corresponding character of the key, running out of characters in the key will loop back to the beginning. For example: Hello
encrypted with a key of World
would shift like:
H → W → D
e → o → s
l → r → c
l → l → w
o → d → r
- for the next letters, the key would loop back and start from the W in World again. There is more information available on the Vigenère cipher Wikipedia page.