Skip to content

Commit

Permalink
add constructor to ValidationResult
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnzhou committed Apr 30, 2024
1 parent ec045e4 commit 4a1370a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Sources/LCLPingAuth/Models.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,10 @@ public struct ValidationResult: Codable {
public let R: Data
public let skT: Data
public let hPKR: Data

public init(R: Data, skT: Data, hPKR: Data) {
self.R = R
self.skT = skT
self.hPKR = hPKR
}
}

0 comments on commit 4a1370a

Please sign in to comment.