Lines Matching refs:u64
648 if (secure_id & (HardwareAuthenticatorType::Password as u64) in import_wrapped_key()
649 == (HardwareAuthenticatorType::Password as u64)) in import_wrapped_key()
650 && (secure_id & (HardwareAuthenticatorType::Fingerprint as u64) in import_wrapped_key()
651 == (HardwareAuthenticatorType::Fingerprint as u64)) in import_wrapped_key()
655 imported_key_params.try_push(KeyParam::UserSecureId(password_sid as u64))?; in import_wrapped_key()
656 } else if secure_id & (HardwareAuthenticatorType::Password as u64) in import_wrapped_key()
657 == (HardwareAuthenticatorType::Password as u64) in import_wrapped_key()
661 imported_key_params.try_push(KeyParam::UserSecureId(password_sid as u64))?; in import_wrapped_key()
662 } else if secure_id & (HardwareAuthenticatorType::Fingerprint as u64) in import_wrapped_key()
663 == (HardwareAuthenticatorType::Fingerprint as u64) in import_wrapped_key()
667 imported_key_params.try_push(KeyParam::UserSecureId(biometric_sid as u64))?; in import_wrapped_key()