移位密码原理及算法实现

移位密码算法原理 移位密码又称为移位代换密码,是单表代换密码中的一种,它的加解密过程可以用以下方式表示:
C=Ek(s)=(s+k) mod n,
S=Dk(c)=(c-k) mod n,
其中,c表示密文字符,s表示明文字符,k表示移位的数字,n表示代换字符集的字符总个数,当字符集为26个字母时的移位算法就是凯撒密码。
移位密码算法实现

1 #include 2 #include 3 #include 4 using namespace std; 5 class Shift 6 { 7 public: 8Shift(); 9static void encryption(ifstream& fin,ofstream& fout,int n); 10static void decryption(ifstream& fin,ofstream& fout,int n); 11 }; 12 void Shift::encryption(ifstream& fin,ofstream& fout,int n)//加密过程 13 { 14char next; 15while(fin.get(next)) 16{ 17fout<
输入file1_2.in
//file1_2.in we will attack tomorrow morning

输出file1_2.out
//file1_2.out xf!xjmm!buubdl!upnpsspx!npsojoh

【移位密码原理及算法实现】

    推荐阅读