File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Sources/WebAuthn/Ceremonies/Shared Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ import SwiftCBOR
19
19
/// Data created and/ or used by the authenticator during authentication/ registration.
20
20
/// The data contains, for example, whether a user was present or verified.
21
21
public struct AuthenticatorData : Equatable , Sendable {
22
- let relyingPartyIDHash : [ UInt8 ]
23
- let flags : AuthenticatorFlags
24
- let counter : UInt32
22
+ var relyingPartyIDHash : [ UInt8 ]
23
+ var flags : AuthenticatorFlags
24
+ var counter : UInt32
25
25
/// For attestation signatures this value will be set. For assertion signatures not.
26
- let attestedData : AttestedCredentialData ?
27
- let extData : [ UInt8 ] ?
26
+ var attestedData : AttestedCredentialData ?
27
+ var extData : [ UInt8 ] ?
28
28
29
29
init (
30
30
relyingPartyIDHash: SHA256Digest ,
You can’t perform that action at this time.
0 commit comments