Lines Matching refs:info
59 const mbedtls_cipher_info_t *info) in mbedtls_cipher_get_base() argument
61 return mbedtls_cipher_base_lookup_table[info->base_idx]; in mbedtls_cipher_get_base()
90 for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { in mbedtls_cipher_info_from_type()
92 return def->info; in mbedtls_cipher_info_from_type()
108 for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { in mbedtls_cipher_info_from_string()
109 if (!strcmp(def->info->name, cipher_name)) { in mbedtls_cipher_info_from_string()
110 return def->info; in mbedtls_cipher_info_from_string()
124 for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { in mbedtls_cipher_info_from_values()
125 if (mbedtls_cipher_get_base(def->info)->cipher == cipher_id && in mbedtls_cipher_info_from_values()
126 mbedtls_cipher_info_get_key_bitlen(def->info) == (unsigned) key_bitlen && in mbedtls_cipher_info_from_values()
127 def->info->mode == mode) { in mbedtls_cipher_info_from_values()
128 return def->info; in mbedtls_cipher_info_from_values()