Download - Cipher Programs

Transcript

/** Type: Monoalphabetic Substitution Cipher * Caesar Cipher*/ #include #include #include#includeusing namespace std;

class CaesarCipher{ private: static const int KEY = 3 ; // the key for caesar cipher public: string encryption (string str) { string str2 = "" ; for (int i=0 ; i


Top Related