Home
last modified time | relevance | path

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

/mbedtls-latest/library/
Dpkcs12.c228 ret = mbedtls_cipher_crypt(&cipher_ctx, iv, iv_len, data, len, output, &finish_olen); in mbedtls_pkcs12_pbe_ext()
Dpkcs5.c256 if ((ret = mbedtls_cipher_crypt(&cipher_ctx, iv, enc_scheme_params.len, in mbedtls_pkcs5_pbes2_ext()
Dcipher.c1309 int mbedtls_cipher_crypt(mbedtls_cipher_context_t *ctx, in mbedtls_cipher_crypt() function
Dssl_msg.c1354 if ((ret = mbedtls_cipher_crypt(&transform->cipher_ctx_enc, in mbedtls_ssl_encrypt_buf()
1892 if ((ret = mbedtls_cipher_crypt(&transform->cipher_ctx_dec, in mbedtls_ssl_decrypt_buf()
/mbedtls-latest/include/mbedtls/
Dcipher.h1056 int mbedtls_cipher_crypt(mbedtls_cipher_context_t *ctx,
/mbedtls-latest/tests/suites/
Dtest_suite_cipher.function1122 TEST_ASSERT(finish_result == mbedtls_cipher_crypt(&ctx, iv->len ? iv->x : NULL,
1251 mbedtls_cipher_crypt(&ctx, iv, sizeof(iv), input,
1255 TEST_EQUAL(0, mbedtls_cipher_crypt(&ctx, iv, sizeof(iv), input,
/mbedtls-latest/tests/src/test_helpers/
Dssl_helpers.c1129 return mbedtls_cipher_crypt(&transform->cipher_ctx_enc, in mbedtls_test_psa_cipher_encrypt_helper()
/mbedtls-latest/docs/
Dpsa-transition.md366 4. For a one-shot operation, call `mbedtls_cipher_crypt`. To pass the input in multiple parts, call…
/mbedtls-latest/
DChangeLog1564 * Fix mbedtls_cipher_crypt: AES-ECB when MBEDTLS_USE_PSA_CRYPTO is enabled.