Searched refs:mbedtls_cipher_setup (Results 1 – 19 of 19) sorted by relevance
/mbedtls-3.4.0/tests/suites/ |
D | test_suite_cipher.function | 132 TEST_ASSERT( 0 == mbedtls_cipher_setup( ctx, 200 TEST_ASSERT( mbedtls_cipher_setup( &valid_ctx, valid_info ) == 0 ); 202 /* mbedtls_cipher_setup() */ 203 TEST_ASSERT( mbedtls_cipher_setup( &valid_ctx, NULL ) == 348 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) ); 364 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) ); 408 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) ); 409 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_enc, cipher_info ) ); 544 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) ); 609 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) ); [all …]
|
D | test_suite_cmac.function | 34 TEST_ASSERT( mbedtls_cipher_setup( &ctx, cipher_info ) == 0 ); 148 TEST_ASSERT( mbedtls_cipher_setup( &ctx, cipher_info ) == 0 ); 228 TEST_ASSERT( mbedtls_cipher_setup( &ctx, cipher_info ) == 0 );
|
D | test_suite_ssl.function | 1427 CHK( mbedtls_cipher_setup( &t_in->cipher_ctx_enc, cipher_info ) == 0 ); 1428 CHK( mbedtls_cipher_setup( &t_in->cipher_ctx_dec, cipher_info ) == 0 ); 1429 CHK( mbedtls_cipher_setup( &t_out->cipher_ctx_enc, cipher_info ) == 0 ); 1430 CHK( mbedtls_cipher_setup( &t_out->cipher_ctx_dec, cipher_info ) == 0 );
|
/mbedtls-3.4.0/library/ |
D | ssl_ticket.c | 261 if( ( ret = mbedtls_cipher_setup( &ctx->keys[0].ctx, cipher_info ) ) != 0 ) in mbedtls_ssl_ticket_setup() 264 if( ( ret = mbedtls_cipher_setup( &ctx->keys[1].ctx, cipher_info ) ) != 0 ) in mbedtls_ssl_ticket_setup()
|
D | cmac.c | 386 if( ( ret = mbedtls_cipher_setup( &ctx, cipher_info ) ) != 0 ) in mbedtls_cipher_cmac() 773 if( ( ret = mbedtls_cipher_setup( &ctx, cipher_info ) ) != 0 ) in cmac_test_subkeys()
|
D | pkcs12.c | 158 if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info ) ) != 0 ) in mbedtls_pkcs12_pbe()
|
D | psa_crypto_mac.c | 181 ret = mbedtls_cipher_setup( &operation->ctx.cmac, cipher_info ); in cmac_setup()
|
D | pkcs5.c | 188 if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info ) ) != 0 ) in mbedtls_pkcs5_pbes2()
|
D | psa_crypto_cipher.c | 186 ret = mbedtls_cipher_setup( &operation->ctx.cipher, cipher_info ); in psa_cipher_setup()
|
D | nist_kw.c | 94 if( ( ret = mbedtls_cipher_setup( &ctx->cipher_ctx, cipher_info ) ) != 0 ) in mbedtls_nist_kw_setkey()
|
D | ssl_tls13_keys.c | 935 if( ( ret = mbedtls_cipher_setup( &transform->cipher_ctx_enc, in mbedtls_ssl_tls13_populate_transform() 942 if( ( ret = mbedtls_cipher_setup( &transform->cipher_ctx_dec, in mbedtls_ssl_tls13_populate_transform()
|
D | ccm.c | 77 if( ( ret = mbedtls_cipher_setup( &ctx->cipher_ctx, cipher_info ) ) != 0 ) in mbedtls_ccm_setkey()
|
D | gcm.c | 144 if( ( ret = mbedtls_cipher_setup( &ctx->cipher_ctx, cipher_info ) ) != 0 ) in mbedtls_gcm_setkey()
|
D | cipher.c | 182 int mbedtls_cipher_setup( mbedtls_cipher_context_t *ctx, in mbedtls_cipher_setup() function
|
D | ssl_tls.c | 8350 if( ( ret = mbedtls_cipher_setup( &transform->cipher_ctx_enc, in ssl_tls12_populate_transform() 8357 if( ( ret = mbedtls_cipher_setup( &transform->cipher_ctx_dec, in ssl_tls12_populate_transform()
|
/mbedtls-3.4.0/programs/cipher/ |
D | cipher_aead_demo.c | 151 CHK( mbedtls_cipher_setup( ctx, in aead_prepare()
|
/mbedtls-3.4.0/include/mbedtls/ |
D | cipher.h | 624 int mbedtls_cipher_setup( mbedtls_cipher_context_t *ctx,
|
/mbedtls-3.4.0/programs/aes/ |
D | crypt_and_hash.c | 172 if( ( ret = mbedtls_cipher_setup( &cipher_ctx, cipher_info) ) != 0 ) in main()
|
/mbedtls-3.4.0/docs/architecture/psa-migration/ |
D | testing.md | 85 `mbedtls_cipher_setup()` in TLS is tested by `run_test_psa` in
|