aboutsummaryrefslogtreecommitdiffhomepage
path: root/oxish/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'oxish/src/lib.rs')
-rw-r--r--oxish/src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/oxish/src/lib.rs b/oxish/src/lib.rs
index 8e389a6..cf453fe 100644
--- a/oxish/src/lib.rs
+++ b/oxish/src/lib.rs
@@ -13,15 +13,15 @@ use std::{io, str, task::ready};
use anyhow::Context as _;
use proto::{
- Completion, Decode, Decoded, Encode, Identification, IdentificationError, Ignore,
- IncomingPacket, PROTOCOL, ProtoError, ReadState, WriteState,
+ Completion, Decode, Decoded, Encode, HostKeys, Identification, IdentificationError, Ignore,
+ IncomingPacket, PROTOCOL, ProtoError, ReadState, ServerHostKey, SessionHostKey, WriteState,
crypto::{
CryptoError, CryptoProvider, Digest, HandshakeBuffer, HandshakeHash, KeyLengths,
KeySourceSide,
},
key_exchange::{
- EcdhKeyExchangeInit, HostKeys, Identities, KeyExchange, KeyExchangeOutput, KeySourceSet,
- NewKeys, Rekey, ServerHostKey, SessionHostKey, StrictKeyExchange,
+ EcdhKeyExchangeInit, Identities, KeyExchange, KeyExchangeOutput, KeySourceSet, NewKeys,
+ Rekey, StrictKeyExchange,
},
named::{EncryptionAlgorithm, ExtensionId},
};