webauthn-swift icon indicating copy to clipboard operation
webauthn-swift copied to clipboard

A Swift library for implementing the WebAuthn spec

Results 23 webauthn-swift issues
Sort by recently updated
recently updated
newest added

Public enums are a nightmare with libraries in Swift, we should remove them

good first issue

I want to use secure challenge value. ```swift let webAuthn = WebAuthnManager( configuration: .init( relyingPartyID: "RELYING_PARTY_ID", relyingPartyName: "RELYING_PARTY_NAME", relyingPartyOrigin: "RELYING_PARTY_ORIGIN" ), challengeGenerator: .init { SymmetricKey(size: .bits256).withUnsafeBytes { Array($0) } //...