Home
last modified time | relevance | path

Searched refs:cipher_type (Results 1 – 9 of 9) sorted by relevance

/mbedtls-3.4.0/tests/suites/
Dtest_suite_cmac.function102 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 ) )
Dtest_suite_cipher.function168 const int *cipher_type;
170 for( cipher_type = mbedtls_cipher_list(); *cipher_type != 0; cipher_type++ )
173 mbedtls_cipher_info_from_type( *cipher_type );
174 mbedtls_test_set_step( *cipher_type );
175 if( ! check_cipher_info( *cipher_type, info ) )
Dtest_suite_ssl.function1374 int cipher_type, int hash_id,
1410 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
1655 status = mbedtls_ssl_cipher_to_psa( cipher_type,
3702 void ssl_crypt_record( int cipher_type, int hash_id,
3726 ret = build_transforms( &t0, &t1, cipher_type, hash_id,
3840 void ssl_crypt_record_small( int cipher_type, int hash_id,
3887 ret = build_transforms( &t0, &t1, cipher_type, hash_id,
4011 void ssl_decrypt_non_etm_cbc( int cipher_type, int hash_id, int trunc_hmac,
4056 ret = build_transforms( &t0, &t1, cipher_type, hash_id,
/mbedtls-3.4.0/library/
Dcmac.c749 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()
Dpkcs12.c128 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type, in mbedtls_pkcs12_pbe() argument
143 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in mbedtls_pkcs12_pbe()
Dcipher.c92 const mbedtls_cipher_type_t cipher_type ) in mbedtls_cipher_info_from_type() argument
97 if( def->type == cipher_type ) in mbedtls_cipher_info_from_type()
/mbedtls-3.4.0/include/mbedtls/
Dpkcs12.h74 mbedtls_cipher_type_t cipher_type, mbedtls_md_type_t md_type,
Dcipher.h409 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_type( const mbedtls_cipher_type_t cipher_type
/mbedtls-3.4.0/programs/test/
Dbenchmark.c810 mbedtls_cipher_type_t cipher_type; in main() local
813 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; in main()
815 keysize += 64, cipher_type++ ) in main()
822 cipher_info = mbedtls_cipher_info_from_type( cipher_type ); in main()