Skip to content

Commit

Permalink
Make SRPKeyPair.init public
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Nov 5, 2024
1 parent f76f7ee commit ce202c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SRP/keys.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public struct SRPKeyPair {
/// - Parameters:
/// - public: The public key of the key pair
/// - private: The private key of the key pair
@_spi(Testing) public init(public: SRPKey, private: SRPKey) {
public init(public: SRPKey, private: SRPKey) {
self.private = `private`
self.public = `public`
}
Expand Down

0 comments on commit ce202c4

Please sign in to comment.