jbainbridge98 / cipherApp

Cipher encryption and decryption
0 stars 1 forks source link

transposition cipher #1

Open Ling2000 opened 2 years ago

Ling2000 commented 2 years ago

For the transposition cipher in your implement, sometimes the ciphertext is the same as the plain text. For example, for ”sea”, it has possible to output ”sea” directly but we expect ”sae”. The length of the matrix may be longer than the length of the word.

jbainbridge98 commented 2 years ago

This was a big problem of ours that seemed to stem from a global variable mishap. Transposition will occasionally work for some reason but not 100% of the time unfortunately.

symxmyz233 commented 2 years ago

It is a minor bug. Thank you all.