main.cpp
来自「RSA加密算法的实现 2^1024大的素数实现」· C++ 代码 · 共 22 行
CPP
22 行
#include"function.h"
#include<fstream>
#include"Timer.h"
using namespace std;
int main()
{
Timer t;
t.start();
//GenerateKey();
encrypt();
decode();
t.stop();
cout<<"Total run time is:"<<t.seconds()<<endl;
cout<<"fine~"<<endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?