mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
13 lines
208 B
C
13 lines
208 B
C
#ifndef _SSL_X509_H_
|
|
#define _SSL_X509_H_
|
|
|
|
#include "ssl_types.h"
|
|
|
|
X509* sk_X509_NAME_new_null(void);
|
|
|
|
X509* d2i_X509(X509 **cert, const unsigned char *buffer, long len);
|
|
|
|
void X509_free(X509 *cert);
|
|
|
|
#endif
|