Vigenere is an encrypt algorithm developed in 1467 and was considered uncrackable until the middle of the 19th century.
2
votes
3answers
2k views
Vigenère cipher in Java for all UTF-8 characters
I have this simple function for encrypting strings via Vigenère in Java. I omitted the decryption as this is just a "-" instead of the "+" in the line where the new value is calculated.
But this ...
2
votes
1answer
557 views
Byte Vigenere Cipher, error with decryption
I have to write a Vigenere encryption / decryption function that operates on full bytes (to encrypt and send files over tcp and then decrypt on the other side).
My encrypting function seems to be ...
0
votes
1answer
418 views
Encrypt byte array using vigenere cipher in java
I have to encrypt some file (jpg) using vigenere cipher. I wrote some code, but after encryption and decryption my file is corrupted. The first 1/4 of image displays okay, but the rest of it is ...