pki.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:0k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #ifndef PKI_H
  2. #define PKI_H
  3. #include "gwlib.h"
  4. #include <openssl/x509.h>
  5. /* pki.c /pki.h contain an interface to openssl to read and manipulate various
  6.    encryption and certificate functions */
  7. void pki_init(void);
  8. void pki_shutdown(void);
  9. void get_cert_from_file(Octstr *s, X509 **x509);
  10. void get_privkey_from_file(Octstr *s, RSA **priv_key, Octstr *password);
  11. void dump_cert(X509 *x509);
  12. void dump_privkey(RSA *priv_key);
  13. #endif PKI_H