c ++中的vigenere cypher
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c ++中的vigenere cypher相关的知识,希望对你有一定的参考价值。
我试图创建一个c ++程序,它接受一些输入并使用vignere cypher加密它。
我的意见是:
快速的棕色狐狸跳过懒狗
在给出关键“你好”的情况下,输出:
alpdvpjemqvayqnenfxozsgpqalpwgcozfg
解密,拼写如下:
theshiftbcownfzxjumasovecthelsvkous
超过50%的加密是正确的,我不知道我是如何设法做到这一点的。
我的代码如下:
#include <iostream>
#include <string>
#include <cstring>
#include <fstream>
#include <sstream>
#include <streambuf>
#include <locale>
class Passcode {
private:
std::string passcode;
public:
void set_passcode(const std::string pc){
passcode = pc;
}
char get_char(std::size_t index){
return passcode[index];
}
std::size_t get_size(){
return passcode.length();
}
};
int find_index(char* arr, const std::size_t SIZE, const char flag){
for(std::size_t i=0; i<SIZE; ++i){
if (arr[i]==flag) return i;
}
return -1;
}
int main() {
char alphabet[26] = {'a','b','c','d','e','f','g','h',
'i','j','k','l','m','n','o','p',
'q','r','s','t','u','v','w','x',
'y','z'};
//grab input
std::ifstream input("input.txt");
std::stringstream buf;
buf << input.rdbuf();
std::string str = buf.str();
//codify string
//no spaces, no caps, etc.
std::locale loc;
std::string uncyphered_text;
for(std::size_t i=0; i<str.length(); ++i){
if(str[i]!=' ') uncyphered_text+=std::tolower(str[i],loc);
}
//grab key
std::cout << "Enter your passcode: ";
std::string in; std::cin >> in;
Passcode pass; pass.set_passcode(in);
//encypher text
std::string encyphered_text;
for(std::size_t i=1; i<=uncyphered_text.length(); ++i){
char current_char = pass.get_char(i%pass.get_size()-1);
int current_char_index = find_index(alphabet, 26, current_char);
int current_cypher_index = find_index(alphabet, 26, uncyphered_text[i-1]);
encyphered_text+=alphabet[(current_char_index+current_cypher_index)%26];
}
std::cout << encyphered_text << std::endl;
return 0;
}
我觉得我可能正在使用模数运算符做错了。
以上是关于c ++中的vigenere cypher的主要内容,如果未能解决你的问题,请参考以下文章