SignedData

public struct SignedData

Undocumented

  • The raw signature bytes.

    Declaration

    Swift

    public let rawData: Data
  • The public key used for signing (required for Passkeys).

    Declaration

    Swift

    public let publicKey: Data?
  • The WebAuthn authenticator data (only for Passkeys).

    Declaration

    Swift

    public let authenticatorData: Data?
  • The WebAuthn client data JSON (only for Passkeys).

    Declaration

    Swift

    public let clientDataJson: Data?
  • Undocumented

    Declaration

    Swift

    public init(rawData: Data, publicKey: Data? = nil, authenticatorData: Data? = nil, clientDataJson: Data? = nil)