puts "Please enter the sentence to be encrypted: "
 plaintext = gets.chomp.upcase!
 puts "Please enter the vigenere key: "
...

Ruby Vigenere cipher implementation

by DoctorNo, July 17, 2010 17:43, 4 refactorings, tagged with ruby, cipher, vigenere

I tried implementing this b...

65904709b86fe5f3a5ada44cb47cf86d Talk
#Input string
msg = "I wonder if this code can be better."

...

Ruby Circular Cipher

by amoeba.myopenid.com, November 05, 2007 22:21, 6 refactorings, tagged with cipher, encryption, ascii

Simple cipher program. Modi...

B08d60ec1b3774a9deb5a353c37d12ce Talk