Skip to main content

mbedtls_x509_buf

Type Alias 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§

#[repr(C)]
pub 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.