libcoap
4.3.0
|
The structure that holds the PKI PEM buffer definitions. More...
#include <coap_dtls.h>
Data Fields | |
const uint8_t * | ca_cert |
PEM buffer Common CA Cert. More... | |
const uint8_t * | public_cert |
PEM buffer Public Cert, or Public Key if RPK. More... | |
const uint8_t * | private_key |
PEM buffer Private Key If RPK and 'EC PRIVATE KEY' this can be used for both the public_cert and private_key. More... | |
size_t | ca_cert_len |
PEM buffer CA Cert length. More... | |
size_t | public_cert_len |
PEM buffer Public Cert length. More... | |
size_t | private_key_len |
PEM buffer Private Key length. More... | |
The structure that holds the PKI PEM buffer definitions.
The certificates and private key data must be in PEM format.
Note: The Certs and Key should be NULL terminated strings for performance reasons (to save a potential buffer copy) and the length include this NULL terminator. It is not a requirement to have the NULL terminator though and the length must then reflect the actual data size.
Definition at line 173 of file coap_dtls.h.
const uint8_t* coap_pki_key_pem_buf_t::ca_cert |
PEM buffer Common CA Cert.
Definition at line 174 of file coap_dtls.h.
size_t coap_pki_key_pem_buf_t::ca_cert_len |
PEM buffer CA Cert length.
Definition at line 179 of file coap_dtls.h.
const uint8_t* coap_pki_key_pem_buf_t::private_key |
PEM buffer Private Key If RPK and 'EC PRIVATE KEY' this can be used for both the public_cert and private_key.
Definition at line 176 of file coap_dtls.h.
size_t coap_pki_key_pem_buf_t::private_key_len |
PEM buffer Private Key length.
Definition at line 181 of file coap_dtls.h.
const uint8_t* coap_pki_key_pem_buf_t::public_cert |
PEM buffer Public Cert, or Public Key if RPK.
Definition at line 175 of file coap_dtls.h.
size_t coap_pki_key_pem_buf_t::public_cert_len |
PEM buffer Public Cert length.
Definition at line 180 of file coap_dtls.h.