用c++實現DES基本算法

#include <iostream> #include<bitset> #include<string> using namespace std; void leftmov(string &r)                              //左移函數 {  bitset<28> bits1(r,0,28); bitset<28> bits2(r,0,1); bitset<28>
相關文章
相關標籤/搜索