Home
last modified time | relevance | path

Searched refs:cipher_op (Results 1 – 3 of 3) sorted by relevance

/openthread-3.7.0/third_party/mbedtls/repo/library/
Dcipher.c1325 psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; in mbedtls_cipher_crypt() local
1329 status = psa_cipher_decrypt_setup(&cipher_op, in mbedtls_cipher_crypt()
1333 status = psa_cipher_encrypt_setup(&cipher_op, in mbedtls_cipher_crypt()
1349 status = psa_cipher_set_iv(&cipher_op, iv, iv_len); in mbedtls_cipher_crypt()
1355 status = psa_cipher_update(&cipher_op, in mbedtls_cipher_crypt()
1362 status = psa_cipher_finish(&cipher_op, in mbedtls_cipher_crypt()
Dssl_msg.c1255 psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; in mbedtls_ssl_encrypt_buf() local
1312 status = psa_cipher_encrypt_setup(&cipher_op, in mbedtls_ssl_encrypt_buf()
1321 status = psa_cipher_set_iv(&cipher_op, transform->iv_enc, transform->ivlen); in mbedtls_ssl_encrypt_buf()
1330 status = psa_cipher_update(&cipher_op, in mbedtls_ssl_encrypt_buf()
1341 status = psa_cipher_finish(&cipher_op, in mbedtls_ssl_encrypt_buf()
1671 psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; in mbedtls_ssl_decrypt_buf() local
1852 status = psa_cipher_decrypt_setup(&cipher_op, in mbedtls_ssl_decrypt_buf()
1861 status = psa_cipher_set_iv(&cipher_op, transform->iv_dec, transform->ivlen); in mbedtls_ssl_decrypt_buf()
1869 status = psa_cipher_update(&cipher_op, in mbedtls_ssl_decrypt_buf()
1879 status = psa_cipher_finish(&cipher_op, in mbedtls_ssl_decrypt_buf()
/openthread-3.7.0/third_party/mbedtls/repo/tests/src/test_helpers/
Dssl_helpers.c1093 psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; in mbedtls_test_psa_cipher_encrypt_helper() local
1096 status = psa_cipher_encrypt_setup(&cipher_op, in mbedtls_test_psa_cipher_encrypt_helper()
1104 status = psa_cipher_set_iv(&cipher_op, iv, iv_len); in mbedtls_test_psa_cipher_encrypt_helper()
1110 status = psa_cipher_update(&cipher_op, input, ilen, output, ilen, olen); in mbedtls_test_psa_cipher_encrypt_helper()
1116 status = psa_cipher_finish(&cipher_op, output + *olen, ilen - *olen, in mbedtls_test_psa_cipher_encrypt_helper()