Problem Background I am a total beginner in Haskell, so after reading the Starting out-chapter of “Learn you a Haskell”, […]
Tag: caesar-cipher
Caesar and Vigenère ciphers in Haskell, Take 2 (not so simple this time)
Problem I’ve posted my simple ciphers on Code Review several days ago (link: here). I refactored my code and tried […]
Simple Caesar shifter in C#
Problem I use these in a windows form with fun buttons, I wanted to see what the world thinks of […]
Readable Caesar cipher
Problem I was trying to refactor the following code for Caesar cipher, but it feels overly complicated at the end […]
Simple “secret message” decoder program
Problem Since I am new to Java, I wanted to see if there were better ways of answering the same […]
Custom encryption algorithm, “SBC”
Problem I decided to roll out my own encryption algorithm, which I am calling “SBC” or Simple Byte Cipher. Essentially, […]
Ceasar Cipher (Rot 13)
Problem I’ve created a basic cipher program that will turn your string into a Rot13 cipher. I’m pretty sure there […]
Caesar Cipher written in Python
Problem I have written a simple Caesar Cipher in Python in my efforts to learn a language that isn’t C. […]
Brute force Caesar Cipher decrypter
Problem I wrote the following that tries to crack a message that was encrypted via a simple Caesar cipher through […]
Caesar and Vigenère ciphers in Haskell the simple way
Problem There are two ciphers, Caesar and Vigenère, both with an encoder and a decoder. Both work with spaces and […]