Searched refs:MBEDTLS_AES_DECRYPT (Results 1 – 7 of 7) sorted by relevance
/third_party/mbedtls/library/ |
D | aes.c | 977 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 …]
|
D | pem.c | 211 ret = mbedtls_aes_crypt_cbc( &aes_ctx, MBEDTLS_AES_DECRYPT, buflen, in pem_aes_decrypt()
|
D | cipher_wrap.c | 179 mode = MBEDTLS_AES_DECRYPT; in aes_crypt_xts_wrap()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_aes.function | 48 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/ |
D | lws-genaes.c | 32 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/ |
D | aes.h | 52 #define MBEDTLS_AES_DECRYPT 0 /**< AES decryption. */ macro
|
/third_party/mbedtls/programs/pkey/ |
D | dh_client.c | 285 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_DECRYPT, buf, buf ); in main()
|