Searched refs:psa_cipher_operation_t (Results 1 – 11 of 11) sorted by relevance
/mbedtls-development/include/psa/ |
A D | crypto.h | 1720 typedef struct psa_cipher_operation_s psa_cipher_operation_t; typedef 1730 static psa_cipher_operation_t psa_cipher_operation_init(void); 1792 psa_status_t psa_cipher_encrypt_setup(psa_cipher_operation_t *operation, 1856 psa_status_t psa_cipher_decrypt_setup(psa_cipher_operation_t *operation, 1894 psa_status_t psa_cipher_generate_iv(psa_cipher_operation_t *operation, 1936 psa_status_t psa_cipher_set_iv(psa_cipher_operation_t *operation, 1978 psa_status_t psa_cipher_update(psa_cipher_operation_t *operation, 2031 psa_status_t psa_cipher_finish(psa_cipher_operation_t *operation, 2061 psa_status_t psa_cipher_abort(psa_cipher_operation_t *operation);
|
/mbedtls-development/library/ |
A D | psa_crypto_driver_wrappers.h | 134 psa_cipher_operation_t *operation, 140 psa_cipher_operation_t *operation, 146 psa_cipher_operation_t *operation, 151 psa_cipher_operation_t *operation, 159 psa_cipher_operation_t *operation, 165 psa_cipher_operation_t *operation );
|
A D | psa_crypto_driver_wrappers.c | 998 psa_cipher_operation_t *operation, in psa_driver_wrapper_cipher_encrypt_setup() 1070 psa_cipher_operation_t *operation, in psa_driver_wrapper_cipher_decrypt_setup() 1141 psa_cipher_operation_t *operation, in psa_driver_wrapper_cipher_set_iv() 1176 psa_cipher_operation_t *operation, in psa_driver_wrapper_cipher_update() 1222 psa_cipher_operation_t *operation, in psa_driver_wrapper_cipher_finish() 1260 psa_cipher_operation_t *operation ) in psa_driver_wrapper_cipher_abort()
|
A D | psa_crypto.c | 3261 static psa_status_t psa_cipher_setup( psa_cipher_operation_t *operation, in psa_cipher_setup() 3328 psa_status_t psa_cipher_encrypt_setup( psa_cipher_operation_t *operation, in psa_cipher_encrypt_setup() 3335 psa_status_t psa_cipher_decrypt_setup( psa_cipher_operation_t *operation, in psa_cipher_decrypt_setup() 3342 psa_status_t psa_cipher_generate_iv( psa_cipher_operation_t *operation, in psa_cipher_generate_iv() 3389 psa_status_t psa_cipher_set_iv( psa_cipher_operation_t *operation, in psa_cipher_set_iv() 3425 psa_status_t psa_cipher_update( psa_cipher_operation_t *operation, in psa_cipher_update() 3460 psa_status_t psa_cipher_finish( psa_cipher_operation_t *operation, in psa_cipher_finish() 3496 psa_status_t psa_cipher_abort( psa_cipher_operation_t *operation ) in psa_cipher_abort()
|
A D | cipher.c | 1279 psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; in mbedtls_cipher_crypt()
|
/mbedtls-development/programs/psa/ |
A D | crypto_examples.c | 61 static psa_status_t cipher_operation( psa_cipher_operation_t *operation, in cipher_operation() 109 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; in cipher_encrypt() 140 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; in cipher_decrypt()
|
/mbedtls-development/tests/suites/ |
A D | test_suite_psa_crypto_driver_wrappers.function | 441 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 534 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 666 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 859 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
A D | test_suite_psa_crypto.function | 179 psa_cipher_operation_t *operation, 1188 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 2580 psa_cipher_operation_t func = psa_cipher_operation_init( ); 2581 psa_cipher_operation_t init = PSA_CIPHER_OPERATION_INIT; 2582 psa_cipher_operation_t zero; 2619 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 2656 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 2872 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 2950 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 3000 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; [all …]
|
A D | test_suite_psa_crypto_se_driver_hal.function | 666 psa_cipher_operation_t cipher_operation = PSA_CIPHER_OPERATION_INIT;
|
/mbedtls-development/docs/ |
A D | getting_started.md | 194 1. Allocate an operation (`psa_cipher_operation_t`) structure to pass to the cipher functions. 217 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; 278 1. Allocate an operation (`psa_cipher_operation_t`) structure to pass to the cipher functions. 296 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT;
|
/mbedtls-development/tests/src/ |
A D | psa_exercise_key.c | 165 psa_cipher_operation_t operation = PSA_CIPHER_OPERATION_INIT; in exercise_cipher_key()
|
Completed in 51 milliseconds