Searched refs:lock_with (Results 1 – 6 of 6) sorted by relevance
/systemd-251/src/home/ |
D | homectl-fido2.c | 72 Fido2EnrollFlags lock_with) { in add_fido2_salt() argument 92 … JSON_BUILD_PAIR("up", JSON_BUILD_BOOLEAN(FLAGS_SET(lock_with, FIDO2ENROLL_UP))), in add_fido2_salt() 93 … JSON_BUILD_PAIR("uv", JSON_BUILD_BOOLEAN(FLAGS_SET(lock_with, FIDO2ENROLL_UV))), in add_fido2_salt() 94 … JSON_BUILD_PAIR("clientPin", JSON_BUILD_BOOLEAN(FLAGS_SET(lock_with, FIDO2ENROLL_PIN))))); in add_fido2_salt() 121 Fido2EnrollFlags lock_with, in identity_add_fido2_parameters() argument 168 lock_with, in identity_add_fido2_parameters() 174 &lock_with); in identity_add_fido2_parameters() 193 lock_with); in identity_add_fido2_parameters()
|
D | homectl-fido2.h | 7 int identity_add_fido2_parameters(JsonVariant **v, const char *device, Fido2EnrollFlags lock_with, …
|
/systemd-251/src/cryptenroll/ |
D | cryptenroll-fido2.c | 15 Fido2EnrollFlags lock_with, in enroll_fido2() argument 45 lock_with, in enroll_fido2() 51 &lock_with); in enroll_fido2() 84 …SON_BUILD_PAIR("fido2-clientPin-required", JSON_BUILD_BOOLEAN(FLAGS_SET(lock_with, FIDO2ENROLL_PIN… in enroll_fido2() 85 … JSON_BUILD_PAIR("fido2-up-required", JSON_BUILD_BOOLEAN(FLAGS_SET(lock_with, FIDO2ENROLL_UP))), in enroll_fido2() 86 … JSON_BUILD_PAIR("fido2-uv-required", JSON_BUILD_BOOLEAN(FLAGS_SET(lock_with, FIDO2ENROLL_UV))))); in enroll_fido2()
|
D | cryptenroll-fido2.h | 11 …*volume_key, size_t volume_key_size, const char *device, Fido2EnrollFlags lock_with, int cred_alg); 13 …volume_key, size_t volume_key_size, const char *device, Fido2EnrollFlags lock_with, int cred_alg) { in enroll_fido2() argument
|
/systemd-251/src/shared/ |
D | libfido2-util.c | 548 Fido2EnrollFlags lock_with, in fido2_generate_hmac_hash() argument 589 assert((lock_with & ~(FIDO2ENROLL_PIN|FIDO2ENROLL_UP|FIDO2ENROLL_UV)) == 0); in fido2_generate_hmac_hash() 617 if (!has_client_pin && FLAGS_SET(lock_with, FIDO2ENROLL_PIN)) { in fido2_generate_hmac_hash() 619 lock_with &= ~FIDO2ENROLL_PIN; in fido2_generate_hmac_hash() 622 if (!has_up && FLAGS_SET(lock_with, FIDO2ENROLL_UP)) { in fido2_generate_hmac_hash() 624 lock_with &= ~FIDO2ENROLL_UP; in fido2_generate_hmac_hash() 627 if (!has_uv && FLAGS_SET(lock_with, FIDO2ENROLL_UV)) { in fido2_generate_hmac_hash() 629 lock_with &= ~FIDO2ENROLL_UV; in fido2_generate_hmac_hash() 784 …r = sym_fido_assert_set_up(a, FLAGS_SET(lock_with, FIDO2ENROLL_UP) ? FIDO_OPT_TRUE : FIDO_OPT_FALS… in fido2_generate_hmac_hash() 788 enable_disable(FLAGS_SET(lock_with, FIDO2ENROLL_UP)), in fido2_generate_hmac_hash() [all …]
|
D | libfido2-util.h | 111 Fido2EnrollFlags lock_with,
|