Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/authenticationservices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1641,6 +1641,11 @@ interface ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest : ASAuth
[Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)]
[NullAllowed, Export ("appID")]
string AppId { get; set; }

/// <summary>Gets or sets the PRF (Pseudo-Random Function) extension input for the security key credential assertion request.</summary>
[Mac (26, 4), iOS (26, 4), MacCatalyst (26, 4)]
[Export ("prf"), NullAllowed]
ASAuthorizationPublicKeyCredentialPrfAssertionInput Prf { get; set; }
}

interface IASAuthorizationPublicKeyCredentialAssertionRequest { }
Expand Down Expand Up @@ -1838,6 +1843,11 @@ interface ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest : ASA
[Export ("residentKeyPreference")]
[BindAs (typeof (ASAuthorizationPublicKeyCredentialResidentKeyPreference))]
NSString ResidentKeyPreference { get; set; }

/// <summary>Gets or sets the PRF (Pseudo-Random Function) extension input for the security key credential registration request.</summary>
[Mac (26, 4), iOS (26, 4), MacCatalyst (26, 4)]
[Export ("prf"), NullAllowed]
ASAuthorizationPublicKeyCredentialPrfRegistrationInput Prf { get; set; }
}

[TV (15, 0), NoiOS, NoMac, NoMacCatalyst]
Expand Down Expand Up @@ -1908,6 +1918,11 @@ interface ASAuthorizationSecurityKeyPublicKeyCredentialAssertion : ASAuthorizati
[Mac (14, 5), iOS (17, 5), MacCatalyst (17, 5)]
[Export ("appID")]
bool AppId { get; }

/// <summary>Gets the PRF (Pseudo-Random Function) extension output from the security key credential assertion.</summary>
[Mac (26, 4), iOS (26, 4), MacCatalyst (26, 4)]
[Export ("prf"), NullAllowed]
ASAuthorizationPublicKeyCredentialPrfAssertionOutput Prf { get; }
}

[NoTV, iOS (15, 0), MacCatalyst (15, 0)]
Expand All @@ -1919,6 +1934,11 @@ interface ASAuthorizationSecurityKeyPublicKeyCredentialRegistration : ASAuthoriz
[Export ("transports", ArgumentSemantic.Assign)]
[BindAs (typeof (ASAuthorizationSecurityKeyPublicKeyCredentialDescriptorTransport []))]
NSString [] Transports { get; }

/// <summary>Gets the PRF (Pseudo-Random Function) extension output from the security key credential registration.</summary>
[Mac (26, 4), iOS (26, 4), MacCatalyst (26, 4)]
[Export ("prf"), NullAllowed]
ASAuthorizationPublicKeyCredentialPrfRegistrationOutput Prf { get; }
}

[TV (16, 0), iOS (15, 0), MacCatalyst (15, 0)]
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading