mirror of
https://github.com/bitwarden/mobile
synced 2026-02-13 23:03:19 +00:00
* PM-7553 Fix native apps passkeys autofill and creation * PM-7658 Implemented Fido2 priviliged apps verification * PM-7576 Implemented digital asset links verification on Fido2 flows for native apps. * PM-7576 Renamed to ValidateAssetLinksAndGetOriginAsync to go along with Google naming and also changed method to private given that public is not necessary * PM-7576 Moved digital asset links verification to a Core service AssetLinksService and added unit tests for it.
8 lines
191 B
C#
8 lines
191 B
C#
namespace Bit.Core.Services
|
|
{
|
|
public interface IAssetLinksService
|
|
{
|
|
Task<bool> ValidateAssetLinksAsync(string rpId, string packageName, string normalizedFingerprint);
|
|
}
|
|
}
|