Home
last modified time | relevance | path

Searched refs:MBEDTLS_AES_DECRYPT (Results 1 – 7 of 7) sorted by relevance

/third_party/mbedtls/library/
Daes.c977 mode == MBEDTLS_AES_DECRYPT ); in mbedtls_aes_crypt_ecb()
1019 mode == MBEDTLS_AES_DECRYPT ); in mbedtls_aes_crypt_cbc()
1039 if( mode == MBEDTLS_AES_DECRYPT ) in mbedtls_aes_crypt_cbc()
1128 mode == MBEDTLS_AES_DECRYPT ); in mbedtls_aes_crypt_xts()
1151 if( leftover && ( mode == MBEDTLS_AES_DECRYPT ) && blocks == 0 ) in mbedtls_aes_crypt_xts()
1183 unsigned char *t = mode == MBEDTLS_AES_DECRYPT ? prev_tweak : tweak; in mbedtls_aes_crypt_xts()
1237 mode == MBEDTLS_AES_DECRYPT ); in mbedtls_aes_crypt_cfb128()
1248 if( mode == MBEDTLS_AES_DECRYPT ) in mbedtls_aes_crypt_cfb128()
1306 mode == MBEDTLS_AES_DECRYPT ); in mbedtls_aes_crypt_cfb8()
1317 if( mode == MBEDTLS_AES_DECRYPT ) in mbedtls_aes_crypt_cfb8()
[all …]
Dpem.c211 ret = mbedtls_aes_crypt_cbc( &aes_ctx, MBEDTLS_AES_DECRYPT, buflen, in pem_aes_decrypt()
Dcipher_wrap.c179 mode = MBEDTLS_AES_DECRYPT; in aes_crypt_xts_wrap()
/third_party/mbedtls/tests/suites/
Dtest_suite_aes.function48 TEST_ASSERT( mbedtls_aes_crypt_ecb( &ctx, MBEDTLS_AES_DECRYPT, src_str->x, output ) == 0 );
96 …TEST_ASSERT( mbedtls_aes_crypt_cbc( &ctx, MBEDTLS_AES_DECRYPT, src_str->len, iv_str->x, src_str->x…
182 TEST_ASSERT( mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_DECRYPT, src_len,
267 …TEST_ASSERT( mbedtls_aes_crypt_cfb128( &ctx, MBEDTLS_AES_DECRYPT, 16, &iv_offset, iv_str->x, src_s…
310 …TEST_ASSERT( mbedtls_aes_crypt_cfb8( &ctx, MBEDTLS_AES_DECRYPT, src_str->len, iv_str->x, src_str->…
/third_party/libwebsockets/lib/tls/mbedtls/
Dlws-genaes.c32 static int operation_map[] = { MBEDTLS_AES_ENCRYPT, MBEDTLS_AES_DECRYPT };
151 if (tag && ctx->op == MBEDTLS_AES_DECRYPT && !n) { in lws_genaes_destroy()
/third_party/mbedtls/include/mbedtls/
Daes.h52 #define MBEDTLS_AES_DECRYPT 0 /**< AES decryption. */ macro
/third_party/mbedtls/programs/pkey/
Ddh_client.c285 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_DECRYPT, buf, buf ); in main()