libcoap 4.3.4-develop-c081bb6
coap_pki_key_pem_buf_t Struct Reference

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...
 

Detailed Description

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 216 of file coap_dtls.h.

Field Documentation

◆ ca_cert

const uint8_t* coap_pki_key_pem_buf_t::ca_cert

PEM buffer Common CA Cert.

Definition at line 217 of file coap_dtls.h.

◆ ca_cert_len

size_t coap_pki_key_pem_buf_t::ca_cert_len

PEM buffer CA Cert length.

Definition at line 222 of file coap_dtls.h.

◆ private_key

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 219 of file coap_dtls.h.

◆ private_key_len

size_t coap_pki_key_pem_buf_t::private_key_len

PEM buffer Private Key length.

Definition at line 224 of file coap_dtls.h.

◆ public_cert

const uint8_t* coap_pki_key_pem_buf_t::public_cert

PEM buffer Public Cert, or Public Key if RPK.

Definition at line 218 of file coap_dtls.h.

◆ public_cert_len

size_t coap_pki_key_pem_buf_t::public_cert_len

PEM buffer Public Cert length.

Definition at line 223 of file coap_dtls.h.


The documentation for this struct was generated from the following file: