cryptodata.h
来自「完成数字证书加密」· C头文件 代码 · 共 31 行
H
31 行
#ifndef CRYPTODATA_H_ #define CRYPTODAT_H_#include <openssl/pkcs7.h>#include <openssl/x509.h>#include <stdlib.h>#include <string.h>#include <stdio.h>#include <assert.h>#include <iostream>#include <NggObject.h>#define K 1024#define CA_CONFIG_PATH "./CA.xml"using namespace std;class CryptoData{public: CryptoData(); ~CryptoData(); string encryptoData(string data); string decryptoData(string data); string readCAconfig(string keyword, string objectName="");private:};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?