mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
12 lines
152 B
C
12 lines
152 B
C
|
#ifndef _SSL_CERT_H_
|
||
|
#define _SSL_CERT_H_
|
||
|
|
||
|
#include "ssl_pkey.h"
|
||
|
#include "ssl_x509.h"
|
||
|
|
||
|
CERT *ssl_cert_new(void);
|
||
|
|
||
|
void ssl_cert_free(CERT *c);
|
||
|
|
||
|
#endif
|