Searched refs:mbedtls_aes_crypt_ecb (Results 1 – 8 of 8) sorted by relevance
/third_party/mbedtls/library/ |
D | ctr_drbg.c | 189 if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, in block_cipher_df() 217 if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, in block_cipher_df() 275 if( ( ret = mbedtls_aes_crypt_ecb( &ctx->aes_ctx, MBEDTLS_AES_ENCRYPT, in ctr_drbg_update_internal() 551 if( ( ret = mbedtls_aes_crypt_ecb( &ctx->aes_ctx, MBEDTLS_AES_ENCRYPT, in mbedtls_ctr_drbg_random_with_add()
|
D | aes.c | 968 int mbedtls_aes_crypt_ecb( mbedtls_aes_context *ctx, in mbedtls_aes_crypt_ecb() function 1044 ret = mbedtls_aes_crypt_ecb( ctx, mode, input, output ); in mbedtls_aes_crypt_cbc() 1065 ret = mbedtls_aes_crypt_ecb( ctx, mode, output, output ); in mbedtls_aes_crypt_cbc() 1142 ret = mbedtls_aes_crypt_ecb( &ctx->tweak, MBEDTLS_AES_ENCRYPT, in mbedtls_aes_crypt_xts() 1165 ret = mbedtls_aes_crypt_ecb( &ctx->crypt, mode, tmp, tmp ); in mbedtls_aes_crypt_xts() 1205 ret = mbedtls_aes_crypt_ecb( &ctx->crypt, mode, tmp, tmp ); in mbedtls_aes_crypt_xts() 1254 ret = mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv ); in mbedtls_aes_crypt_cfb128() 1272 ret = mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv ); in mbedtls_aes_crypt_cfb128() 1313 ret = mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv ); in mbedtls_aes_crypt_cfb8() 1363 ret = mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv ); in mbedtls_aes_crypt_ofb() [all …]
|
D | cipher_wrap.c | 122 return mbedtls_aes_crypt_ecb( (mbedtls_aes_context *) ctx, operation, input, output ); in aes_crypt_ecb_wrap()
|
/third_party/mbedtls/include/mbedtls/ |
D | aes.h | 258 int mbedtls_aes_crypt_ecb( mbedtls_aes_context *ctx,
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_aes.function | 24 TEST_ASSERT( mbedtls_aes_crypt_ecb( &ctx, MBEDTLS_AES_ENCRYPT, src_str->x, output ) == 0 ); 48 TEST_ASSERT( mbedtls_aes_crypt_ecb( &ctx, MBEDTLS_AES_DECRYPT, src_str->x, output ) == 0 ); 370 mbedtls_aes_crypt_ecb( &aes_ctx, invalid_mode, in, out ) );
|
/third_party/mbedtls/programs/pkey/ |
D | dh_client.c | 285 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_DECRYPT, buf, buf ); in main()
|
D | dh_server.c | 297 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_ENCRYPT, buf, buf ); in main()
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | lws-genaes.c | 364 n = mbedtls_aes_crypt_ecb(&ctx->u.ctx, (int)ctx->op, in, out); in lws_genaes_crypt()
|