mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
12 lines
239 B
C
12 lines
239 B
C
#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);
|
|
|
|
#endif
|