diff --git a/Sources/NIOSSH/Keys And Signatures/CryptoKit+PrivateKeyProtocols.swift b/Sources/NIOSSH/Keys And Signatures/CryptoKit+PrivateKeyProtocols.swift index b02b99e..be3ca62 100644 --- a/Sources/NIOSSH/Keys And Signatures/CryptoKit+PrivateKeyProtocols.swift +++ b/Sources/NIOSSH/Keys And Signatures/CryptoKit+PrivateKeyProtocols.swift @@ -14,7 +14,7 @@ import Foundation import NIOCore -import CryptoKit +import Crypto struct Curve25519Signature: NIOSSHSignatureProtocol { static let signaturePrefix = "ssh-ed25519" diff --git a/Sources/NIOSSH/Keys And Signatures/CryptoKit+PublicKeyProtocols.swift b/Sources/NIOSSH/Keys And Signatures/CryptoKit+PublicKeyProtocols.swift index 59e2a52..4e3245a 100644 --- a/Sources/NIOSSH/Keys And Signatures/CryptoKit+PublicKeyProtocols.swift +++ b/Sources/NIOSSH/Keys And Signatures/CryptoKit+PublicKeyProtocols.swift @@ -14,7 +14,7 @@ import Foundation import NIOCore -import CryptoKit +import Crypto extension Curve25519.Signing.PublicKey: NIOSSHPublicKeyProtocol { internal static var prefix: String { "ssh-ed25519" }