Type Alias esp_idf_sys::mbedtls_x509_buf
source · pub type mbedtls_x509_buf = mbedtls_asn1_buf;
Expand description
Type-length-value structure that allows for ASN1 using DER.
Aliased Type§
struct mbedtls_x509_buf {
pub tag: i32,
pub len: usize,
pub p: *mut u8,
}
Fields§
§tag: i32
< ASN1 type, e.g. MBEDTLS_ASN1_UTF8_STRING.
len: usize
< ASN1 length, in octets.
p: *mut u8
< ASN1 data, e.g. in ASCII.