Searched refs:cipher_type (Results 1 – 9 of 9) sorted by relevance
/mbedtls-development/tests/suites/ |
A D | test_suite_cmac.function | 102 void mbedtls_cmac_setkey( int cipher_type, int key_size, int result ) 112 TEST_ASSERT( ( cipher_info = mbedtls_cipher_info_from_type( cipher_type ) ) 122 void mbedtls_cmac_multiple_blocks( int cipher_type, data_t * key, 145 TEST_ASSERT( ( cipher_info = mbedtls_cipher_info_from_type( cipher_type ) ) 186 void mbedtls_cmac_multiple_operations_same_key( int cipher_type, 225 TEST_ASSERT( ( cipher_info = mbedtls_cipher_info_from_type( cipher_type ) )
|
A D | test_suite_cipher.function | 134 const int *cipher_type; 136 for( cipher_type = mbedtls_cipher_list(); *cipher_type != 0; cipher_type++ ) 139 mbedtls_cipher_info_from_type( *cipher_type ); 140 mbedtls_test_set_step( *cipher_type ); 141 if( ! check_cipher_info( *cipher_type, info ) )
|
A D | test_suite_ssl.function | 1191 int cipher_type, int hash_id, 1218 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); 3162 void ssl_crypt_record( int cipher_type, int hash_id, 3184 TEST_ASSERT( build_transforms( &t0, &t1, cipher_type, hash_id, 3295 void ssl_crypt_record_small( int cipher_type, int hash_id, 3340 TEST_ASSERT( build_transforms( &t0, &t1, cipher_type, hash_id, 3461 void ssl_decrypt_non_etm_cbc( int cipher_type, int hash_id, int trunc_hmac, 3497 TEST_ASSERT( build_transforms( &t0, &t1, cipher_type, hash_id,
|
/mbedtls-development/library/ |
A D | cmac.c | 749 mbedtls_cipher_type_t cipher_type, in cmac_test_subkeys() argument 759 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in cmac_test_subkeys() 790 cipher_type == MBEDTLS_CIPHER_AES_192_ECB ) { in cmac_test_subkeys() 844 mbedtls_cipher_type_t cipher_type, in cmac_test_wth_cipher() argument 852 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in cmac_test_wth_cipher() 874 ( cipher_type == MBEDTLS_CIPHER_AES_192_ECB || in cmac_test_wth_cipher() 875 cipher_type == MBEDTLS_CIPHER_DES_EDE3_ECB ) ) { in cmac_test_wth_cipher()
|
A D | pkcs12.c | 125 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type, in mbedtls_pkcs12_pbe() argument 137 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in mbedtls_pkcs12_pbe()
|
A D | cipher.c | 122 const mbedtls_cipher_type_t cipher_type ) in mbedtls_cipher_info_from_type() argument 127 if( def->type == cipher_type ) in mbedtls_cipher_info_from_type()
|
/mbedtls-development/include/mbedtls/ |
A D | pkcs12.h | 72 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type,
|
A D | cipher.h | 414 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_type( const mbedtls_cipher_type_t cipher_type…
|
/mbedtls-development/programs/test/ |
A D | benchmark.c | 829 mbedtls_cipher_type_t cipher_type; in main() local 832 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; in main() 834 keysize += 64, cipher_type++ ) in main() 841 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in main()
|
Completed in 18 milliseconds