Lines Matching refs:decrypted_password

160 …               r = test_password_one(data.encrypted_key->hashed_password, data.decrypted_password);  in user_record_authenticate()
168 r = strv_extend(&cache->pkcs11_passwords, data.decrypted_password); in user_record_authenticate()
183 _cleanup_(erase_and_freep) char *decrypted_password = NULL; in user_record_authenticate()
185 r = fido2_use_token(h, secret, h->fido2_hmac_salt + n, &decrypted_password); in user_record_authenticate()
212 … r = test_password_one(h->fido2_hmac_salt[n].hashed_password, decrypted_password); in user_record_authenticate()
220 r = strv_extend(&cache->fido2_passwords, decrypted_password); in user_record_authenticate()
1192 r = test_password_one(data.encrypted_key->hashed_password, data.decrypted_password); in user_record_compile_effective_passwords()
1199 r = strv_extend(&effective, data.decrypted_password); in user_record_compile_effective_passwords()
1204 r = strv_extend(&cache->pkcs11_passwords, data.decrypted_password); in user_record_compile_effective_passwords()
1214 _cleanup_(erase_and_freep) char *decrypted_password = NULL; in user_record_compile_effective_passwords()
1216 r = fido2_use_token(h, h, h->fido2_hmac_salt + n, &decrypted_password); in user_record_compile_effective_passwords()
1220 r = test_password_one(h->fido2_hmac_salt[n].hashed_password, decrypted_password); in user_record_compile_effective_passwords()
1227 r = strv_extend(&effective, decrypted_password); in user_record_compile_effective_passwords()
1232 r = strv_extend(&cache->fido2_passwords, decrypted_password); in user_record_compile_effective_passwords()