Skip to content

Commit ce202c4

Browse files
committed
Make SRPKeyPair.init public
1 parent f76f7ee commit ce202c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SRP/keys.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public struct SRPKeyPair {
5959
/// - Parameters:
6060
/// - public: The public key of the key pair
6161
/// - private: The private key of the key pair
62-
@_spi(Testing) public init(public: SRPKey, private: SRPKey) {
62+
public init(public: SRPKey, private: SRPKey) {
6363
self.private = `private`
6464
self.public = `public`
6565
}

0 commit comments

Comments
 (0)