Lines Matching refs:u64
608 if (secure_id & (HardwareAuthenticatorType::Password as u64) in import_wrapped_key()
609 == (HardwareAuthenticatorType::Password as u64)) in import_wrapped_key()
610 && (secure_id & (HardwareAuthenticatorType::Fingerprint as u64) in import_wrapped_key()
611 == (HardwareAuthenticatorType::Fingerprint as u64)) in import_wrapped_key()
615 imported_key_params.try_push(KeyParam::UserSecureId(password_sid as u64))?; in import_wrapped_key()
616 } else if secure_id & (HardwareAuthenticatorType::Password as u64) in import_wrapped_key()
617 == (HardwareAuthenticatorType::Password as u64) in import_wrapped_key()
621 imported_key_params.try_push(KeyParam::UserSecureId(password_sid as u64))?; in import_wrapped_key()
622 } else if secure_id & (HardwareAuthenticatorType::Fingerprint as u64) in import_wrapped_key()
623 == (HardwareAuthenticatorType::Fingerprint as u64) in import_wrapped_key()
627 imported_key_params.try_push(KeyParam::UserSecureId(biometric_sid as u64))?; in import_wrapped_key()