Lines Matching defs:operation
18 * This program has four modes of operation:
267 psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
280 PSA_CHECK(psa_key_derivation_setup(&operation, KDF_ALG));
282 &operation, PSA_KEY_DERIVATION_INPUT_SALT,
285 &operation, PSA_KEY_DERIVATION_INPUT_SECRET,
288 &operation, PSA_KEY_DERIVATION_INPUT_INFO,
295 PSA_CHECK(psa_key_derivation_output_key(&attributes, &operation,
297 PSA_CHECK(psa_key_derivation_abort(&operation));
301 psa_key_derivation_abort(&operation);
316 psa_key_derivation_operation_t operation = PSA_KEY_DERIVATION_OPERATION_INIT;
320 /* Set up a key derivation operation from the key derived from
322 PSA_CHECK(psa_key_derivation_setup(&operation, KDF_ALG));
324 &operation, PSA_KEY_DERIVATION_INPUT_SALT,
327 &operation, PSA_KEY_DERIVATION_INPUT_SECRET,
330 &operation, PSA_KEY_DERIVATION_INPUT_INFO,
338 PSA_CHECK(psa_key_derivation_output_key(&attributes, &operation,
342 psa_key_derivation_abort(&operation);