dcff6f7726
引入OpenSSL库,对于其中的RSA及其相关的 C API进行简单的C++封装。
23 lines
342 B
C++
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
|