pub unsafe extern "C" fn s2n_cert_get_utf8_string_from_extension_data_length(
    extension_data: *const u8,
    extension_len: u32,
    utf8_str_len: *mut u32
) -> c_int
Expand description

Returns the UTF8 String length of the ASN.1 X.509 certificate extension data.

@param extension_data A pointer to the DER encoded ASN.1 X.509 certificate extension value being read. @param extension_len represents the length of the input buffer extension_data. @param utf8_str_len This return value contains the UTF8 String length of the ASN.1 X.509 certificate extension data.