pub type mbedtls_x509_sequence = mbedtls_asn1_sequence;
Expand description

Container for a sequence of ASN.1 items

Aliased Type§

struct mbedtls_x509_sequence {
    pub buf: mbedtls_asn1_buf,
    pub next: *mut mbedtls_asn1_sequence,
}

Fields§

§buf: mbedtls_asn1_buf

< Buffer containing the given ASN.1 item.

§next: *mut mbedtls_asn1_sequence

The next entry in the sequence.

The details of memory management for sequences are not documented and may change in future versions. Set this field to \p NULL when initializing a structure, and do not modify it except via Mbed TLS library functions.