NetCpp/include/init.h
saturneric dcff6f7726 对RSA模块进行修改重构工作
引入OpenSSL库,对于其中的RSA及其相关的 C API进行简单的C++封装。
2019-12-14 23:23:09 +08:00

23 lines
342 B
C++

//
// Created by Eric Saturn on 2019/12/12.
//
#ifndef NET_INIT_H
#define NET_INIT_H
#include "type.h"
class init {
public:
init() = delete;
static void doInitWork(){
SSL_load_error_strings();
ERR_load_BIO_strings();
OpenSSL_add_all_algorithms();
RSA_meth_get_init();
}
};
#endif //NET_INIT_H