@@ -11,8 +11,8 @@ extension K1.KeyAgreement {
1111 typealias Impl = K1 . _PrivateKeyImplementation
1212 public typealias PublicKey = K1 . KeyAgreement . PublicKey
1313
14- internal let impl : Impl
15- internal let publicKeyImpl : K1 . _PublicKeyImplementation
14+ let impl : Impl
15+ let publicKeyImpl : K1 . _PublicKeyImplementation
1616
1717 /// The corresponding public key.
1818 public var publicKey : PublicKey {
@@ -111,8 +111,8 @@ extension K1.KeyAgreement {
111111 /// A `secp256k1` public key used for key agreement.
112112 public struct PublicKey : Sendable , Hashable {
113113 typealias Impl = K1 . _PublicKeyImplementation
114- internal let impl : Impl
115- internal init ( impl: Impl ) {
114+ let impl : Impl
115+ init ( impl: Impl ) {
116116 self . impl = impl
117117 }
118118
@@ -233,8 +233,8 @@ extension K1.Schnorr {
233233 typealias Impl = K1 . _PrivateKeyImplementation
234234 public typealias PublicKey = K1 . Schnorr . PublicKey
235235
236- internal let impl : Impl
237- internal let publicKeyImpl : K1 . _PublicKeyImplementation
236+ let impl : Impl
237+ let publicKeyImpl : K1 . _PublicKeyImplementation
238238
239239 /// The corresponding public key.
240240 public var publicKey : PublicKey {
@@ -334,8 +334,8 @@ extension K1.Schnorr {
334334 /// more specifically Schnorr signatures
335335 public struct PublicKey : Sendable , Hashable {
336336 typealias Impl = K1 . _PublicKeyImplementation
337- internal let impl : Impl
338- internal init ( impl: Impl ) {
337+ let impl : Impl
338+ init ( impl: Impl ) {
339339 self . impl = impl
340340 }
341341
@@ -456,8 +456,8 @@ extension K1.ECDSA {
456456 typealias Impl = K1 . _PrivateKeyImplementation
457457 public typealias PublicKey = K1 . ECDSA . PublicKey
458458
459- internal let impl : Impl
460- internal let publicKeyImpl : K1 . _PublicKeyImplementation
459+ let impl : Impl
460+ let publicKeyImpl : K1 . _PublicKeyImplementation
461461
462462 /// The corresponding public key.
463463 public var publicKey : PublicKey {
@@ -557,8 +557,8 @@ extension K1.ECDSA {
557557 /// more specifically ECDSA signatures, that do not offer recovery of the public key.
558558 public struct PublicKey : Sendable , Hashable {
559559 typealias Impl = K1 . _PublicKeyImplementation
560- internal let impl : Impl
561- internal init ( impl: Impl ) {
560+ let impl : Impl
561+ init ( impl: Impl ) {
562562 self . impl = impl
563563 }
564564
@@ -679,8 +679,8 @@ extension K1.ECDSAWithKeyRecovery {
679679 typealias Impl = K1 . _PrivateKeyImplementation
680680 public typealias PublicKey = K1 . ECDSAWithKeyRecovery . PublicKey
681681
682- internal let impl : Impl
683- internal let publicKeyImpl : K1 . _PublicKeyImplementation
682+ let impl : Impl
683+ let publicKeyImpl : K1 . _PublicKeyImplementation
684684
685685 /// The corresponding public key.
686686 public var publicKey : PublicKey {
@@ -780,8 +780,8 @@ extension K1.ECDSAWithKeyRecovery {
780780 /// more specifically ECDSA signatures that offers recovery of the public key.
781781 public struct PublicKey : Sendable , Hashable {
782782 typealias Impl = K1 . _PublicKeyImplementation
783- internal let impl : Impl
784- internal init ( impl: Impl ) {
783+ let impl : Impl
784+ init ( impl: Impl ) {
785785 self . impl = impl
786786 }
787787
0 commit comments