Lines Matching refs:cipher_info
221 const mbedtls_cipher_info_t *cipher_info; member
330 int mbedtls_cipher_setup( mbedtls_cipher_context_t *ctx, const mbedtls_cipher_info_t *cipher_info );
342 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_block_size()
345 return ctx->cipher_info->block_size; in mbedtls_cipher_get_block_size()
359 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_cipher_mode()
362 return ctx->cipher_info->mode; in mbedtls_cipher_get_cipher_mode()
376 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_iv_size()
382 return (int) ctx->cipher_info->iv_size; in mbedtls_cipher_get_iv_size()
395 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_type()
398 return ctx->cipher_info->type; in mbedtls_cipher_get_type()
410 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_name()
413 return ctx->cipher_info->name; in mbedtls_cipher_get_name()
427 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_key_bitlen()
430 return (int) ctx->cipher_info->key_bitlen; in mbedtls_cipher_get_key_bitlen()
444 if( NULL == ctx || NULL == ctx->cipher_info ) in mbedtls_cipher_get_operation()