Lines Matching refs:found
3347 uint8_t found = 0; in get_hkdf_params() local
3356 found |= HASH; in get_hkdf_params()
3365 if (!(found & SALT)) { in get_hkdf_params()
3372 found |= SALT; in get_hkdf_params()
3377 if (!(found & LENGTH)) { in get_hkdf_params()
3379 found |= LENGTH; in get_hkdf_params()
3384 if (!(found & INFO)) { in get_hkdf_params()
3391 found |= INFO; in get_hkdf_params()
3395 if (!(found & HASH)) { in get_hkdf_params()
3397 found |= HASH; in get_hkdf_params()
3407 if (!(found & LENGTH)) in get_hkdf_params()
3423 uint8_t found = 0; in get_concat_kdf_params() local
3433 if (!(found & INFO)) { in get_concat_kdf_params()
3443 found |= INFO; in get_concat_kdf_params()
3447 if (!(found & LENGTH)) { in get_concat_kdf_params()
3449 found |= LENGTH; in get_concat_kdf_params()
3458 if (!(found & LENGTH)) in get_concat_kdf_params()
3473 uint8_t found = 0; in get_pbkdf2_params() local
3483 if (!(found & SALT)) { in get_pbkdf2_params()
3492 found |= SALT; in get_pbkdf2_params()
3496 if (!(found & LENGTH)) { in get_pbkdf2_params()
3498 found |= LENGTH; in get_pbkdf2_params()
3502 if (!(found & COUNT)) { in get_pbkdf2_params()
3504 found |= COUNT; in get_pbkdf2_params()
3513 if ((found & (LENGTH|COUNT)) != (LENGTH|COUNT)) in get_pbkdf2_params()
3541 uint8_t found = 0; in get_sm2_kep_params() local
3565 found |= BIT(IS_INITIATOR); in get_sm2_kep_params()
3577 found |= BIT(PEER_KEY_X); in get_sm2_kep_params()
3590 found |= BIT(PEER_KEY_Y); in get_sm2_kep_params()
3604 found |= BIT(PEER_EPH_KEY_X); in get_sm2_kep_params()
3618 found |= BIT(PEER_EPH_KEY_Y); in get_sm2_kep_params()
3630 found |= BIT(INITIATOR_ID); in get_sm2_kep_params()
3641 found |= BIT(RESPONDER_ID); in get_sm2_kep_params()
3670 if ((found & mandatory) != mandatory) { in get_sm2_kep_params()