⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pki.h

📁 mms client
💻 H
字号:
#ifndef PKI_H#define PKI_H#include "gwlib.h"#include <openssl/x509.h>/* pki.c /pki.h contain an interface to openssl to read and manipulate various   encryption and certificate functions */void pki_init(void);void pki_shutdown(void);void get_cert_from_file(Octstr *s, X509 **x509);void get_privkey_from_file(Octstr *s, RSA **priv_key, Octstr *password);void dump_cert(X509 *x509);void dump_privkey(RSA *priv_key);#endif /* PKI_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -