Lines Matching refs:operation
19 psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
23 PSA_ASSERT(psa_hash_setup(&operation, alg));
24 PSA_ASSERT(psa_hash_update(&operation,
26 PSA_ASSERT(psa_hash_finish(&operation,
33 psa_hash_abort(&operation);
88 psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
92 PSA_ASSERT(psa_hash_setup(&operation, alg));
93 PSA_ASSERT(psa_hash_update(&operation,
96 PSA_ASSERT(psa_hash_verify(&operation,
101 psa_hash_abort(&operation);
112 psa_hash_operation_t operation = PSA_HASH_OPERATION_INIT;
120 PSA_ASSERT(psa_hash_setup(&operation, alg));
122 PSA_ASSERT(psa_hash_update(&operation,
124 PSA_ASSERT(psa_hash_clone(&operation, &operation2));
125 PSA_ASSERT(psa_hash_update(&operation,
130 PSA_ASSERT(psa_hash_finish(&operation,
144 psa_hash_abort(&operation);