jmeline / Cyphers

Let's build some Cyphers in whatever language you want! C# if you can't decide on a language
MIT License
3 stars 7 forks source link

Add Vigenere Autokey Cipher #15

Open jmeline opened 3 years ago

jmeline commented 3 years ago

https://www.braingle.com/brainteasers/codes/autokey.php

https://www.boxentriq.com/code-breaking/cipher-identifier

The Vigenère Autokey Cipher is a more secure variant of the ordinary Vigenère cipher. It encrypt the first letters in the same way as an ordinary Vigenère cipher, but after all letters in the key have been used it doesn't repeat the sequence. Instead it begins using letters from the plaintext as key.

federinik commented 3 years ago

Hi @jmeline, I would like to take in charge this task!

Could you prepare/suggest a test class to help check out the implementation works correctly?

Thank you

federinik commented 2 years ago

@jmeline this has been resolved in #41, I think we can close this