2016-09-20 16:58:46 +08:00
|
|
|
#ifndef _SSL_PKEY_H_
|
|
|
|
#define _SSL_PKEY_H_
|
|
|
|
|
|
|
|
#include "ssl_types.h"
|
|
|
|
|
|
|
|
EVP_PKEY *d2i_PrivateKey(int type,
|
|
|
|
EVP_PKEY **a,
|
|
|
|
const unsigned char **pp,
|
|
|
|
long length);
|
|
|
|
|
2016-09-21 09:23:29 +08:00
|
|
|
void EVP_PKEY_free(EVP_PKEY *x);
|
|
|
|
|
2016-09-20 16:58:46 +08:00
|
|
|
#endif
|