Skip to main content

mbedtls_pkcs7_buf

Type Alias mbedtls_pkcs7_buf 

Source
pub type mbedtls_pkcs7_buf = mbedtls_asn1_buf;
Expand description

Type-length-value structure that allows for ASN.1 using DER.

Aliased Type§

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