Tagged Questions
0
votes
1answer
22 views
Where I can find android source code for vigenere cipher? [closed]
I want to encrypt and decrypt my messages using vigenere cipher. So Im trying to make it in android. Is there anyone can tell me where I can find the code?. Cause i'm a newbie in android.
Thank you ...
1
vote
2answers
159 views
Having trouble encoding text with a vigenere cipher in Haskell
I'm working on a coding project where we need to write a vigenere cypher in Haskell. I've spent hours and made little progress, but I'm stuck on one particular part. Here is my code so far:
...
0
votes
1answer
260 views
Breaking a Modified Vigenere Cipher
Im working on an algorithm to break a modified Vigenere Cipher. The regular Vigenere cipher works in the following way:
Plaintext: ATTACKATDAWN
Key: LEMONLEMONLE
Ciphertext: LXFOPVEFRNHR
Regular ...
0
votes
1answer
401 views
encrypting a Document using vigenere cipher
I'm interested in learning about different encryption techniques and have started to implement a vigenere cipher in c#. I can implement a windows forms which allows me to encrypt and decrypt a string ...
0
votes
1answer
421 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 ...
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 ...
1
vote
3answers
1k views
Solve vigenere code without key - python
This is the problem I have to figure out:
"A message has been encryption using Vigenere encryption method discussed
in class, and its cipher text EQNVZ has been intercepted. Break the code. Assume
...
1
vote
1answer
261 views
Decryption of text file with format other than ASCII
I've been given an encrypted file where the plaintext has a "common (but not extremely common these days)" format. ~80000 bytes
It has been encrypted with what I would describe as a Vigenere cipher ...