PublicKeyCredentialRequestOptions
public struct PublicKeyCredentialRequestOptions : Codable
Represents the options for a public key credential request.
-
A challenge to prevent replay attacks.
Declaration
Swift
public let challenge: String -
The timeout for the operation.
Declaration
Swift
public let timeout: Int? -
The relying party ID.
Declaration
Swift
public let rpId: String? -
A list of allowed credentials.
Declaration
Swift
public let allowCredentials: [PublicKeyCredentialDescriptor]? -
The user verification requirement.
Declaration
Swift
public let userVerification: UserVerificationRequirement?
View on GitHub