-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added strict kex support (terrapin mitigation / kex-strict-*-v00@open…
…ssh.com)
- Loading branch information
Showing
9 changed files
with
186 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,6 +99,10 @@ pub const NONE: Name = Name("none"); | |
pub const EXTENSION_SUPPORT_AS_CLIENT: Name = Name("ext-info-c"); | ||
/// `ext-info-s` | ||
pub const EXTENSION_SUPPORT_AS_SERVER: Name = Name("ext-info-s"); | ||
/// `[email protected]` | ||
pub const EXTENSION_OPENSSH_STRICT_KEX_AS_CLIENT: Name = Name("[email protected]"); | ||
/// `[email protected]` | ||
pub const EXTENSION_OPENSSH_STRICT_KEX_AS_SERVER: Name = Name("[email protected]"); | ||
|
||
const _CURVE25519: Curve25519KexType = Curve25519KexType {}; | ||
const _DH_G1_SHA1: DhGroup1Sha1KexType = DhGroup1Sha1KexType {}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.