#[no_mangle]
pub extern "C" fn rustls_crypto_provider_ciphersuites_len(
    provider: *const rustls_crypto_provider,
) -> usize
Expand description

Returns the number of ciphersuites the rustls_crypto_provider supports.

You can use this to know the maximum allowed index for use with rustls_crypto_provider_ciphersuites_get.

This function will return 0 if the provider is NULL.