aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* oxish: give session process access to the selected host keyDirkjan Ochtman2026-07-295-27/+89
|
* proto: split host key selection from key exchange signingDirkjan Ochtman2026-07-291-15/+30
|
* proto: retain PKCS#8 form of host keysDirkjan Ochtman2026-07-294-21/+38
|
* proto: split key exchange output signing methodDirkjan Ochtman2026-07-291-25/+43
|
* proto: drop Debug bound for EncodeDirkjan Ochtman2026-07-292-2/+1
|
* proto: take session ID to build key exchange replyDirkjan Ochtman2026-07-292-1/+3
|
* oxish: track peer identities in session stateDirkjan Ochtman2026-07-294-7/+63
|
* oxish: keep read-side code closer togetherDirkjan Ochtman2026-07-291-3/+3
|
* build(deps): bump tokio-stream from 0.1.18 to 0.1.19dependabot[bot]2026-07-271-2/+2
| | | | | | | | | | | | | | | Bumps [tokio-stream](https://github.com/tokio-rs/tokio) from 0.1.18 to 0.1.19. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-stream-0.1.18...tokio-stream-0.1.19) --- updated-dependencies: - dependency-name: tokio-stream dependency-version: 0.1.19 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
* build(deps): bump tokio from 1.53.0 to 1.53.1dependabot[bot]2026-07-271-2/+2
| | | | | | | | | | | | | | | Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.53.0 to 1.53.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.53.0...tokio-1.53.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.53.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
* build(deps): bump libc from 0.2.186 to 0.2.189dependabot[bot]2026-07-271-2/+2
| | | | | | | | | | | | | | | | Bumps [libc](https://github.com/rust-lang/libc) from 0.2.186 to 0.2.189. - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.189/CHANGELOG.md) - [Commits](https://github.com/rust-lang/libc/compare/0.2.186...0.2.189) --- updated-dependencies: - dependency-name: libc dependency-version: 0.2.189 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
* build(deps): bump clap from 4.6.2 to 4.6.4dependabot[bot]2026-07-271-5/+5
| | | | | | | | | | | | | | | | Bumps [clap](https://github.com/clap-rs/clap) from 4.6.2 to 4.6.4. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.6.2...clap_complete-v4.6.4) --- updated-dependencies: - dependency-name: clap dependency-version: 4.6.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
* proto: drop specific algorithm from generic error messagesDirkjan Ochtman2026-07-261-6/+2
|
* proto: move base module contents into crate rootDirkjan Ochtman2026-07-265-527/+510
|
* proto: add more required crate metadataDirkjan Ochtman2026-07-261-0/+5
|
* proto: add documentation commentsDirkjan Ochtman2026-07-268-14/+535
|
* proto: privatize more APIDirkjan Ochtman2026-07-263-24/+24
|
* proto: extract new auth moduleDirkjan Ochtman2026-07-264-273/+286
|
* proto: move Disconnect and DisconnectReason into baseDirkjan Ochtman2026-07-262-100/+100
|
* proto: move some more types into key_exchangeDirkjan Ochtman2026-07-263-48/+47
|
* proto: make some modules public instead of re-exporting everythingDirkjan Ochtman2026-07-2612-42/+36
|
* oxish: track receive window as wellDirkjan Ochtman2026-07-263-2/+40
|
* oxish: improve maximum packet size handlingDirkjan Ochtman2026-07-261-3/+10
|
* oxish: handle channel window adjust messagesDirkjan Ochtman2026-07-264-3/+61
|
* oxish: decrease the send window when sendingDirkjan Ochtman2026-07-261-0/+1
|
* oxish: rename Channel::window_size to send_windowDirkjan Ochtman2026-07-261-3/+3
|
* proto: extract constant for MAX_PACKET_LENDirkjan Ochtman2026-07-262-4/+8
|
* proto: privatize inner PacketLengthfieldDirkjan Ochtman2026-07-262-8/+19
|
* Avoid duplicate maximum packet length enforcementDirkjan Ochtman2026-07-262-5/+5
|
* oxish: limit environment variable requestsDirkjan Ochtman2026-07-214-12/+27
|
* oxish: add debug option to disable spawningDirkjan Ochtman2026-07-214-10/+55
|
* oxish: move listener loop into the libraryDirkjan Ochtman2026-07-212-25/+30
|
* oxish: limit authentication attemptsDirkjan Ochtman2026-07-211-0/+13
|
* oxish: limit the number of authenticating connectionsDirkjan Ochtman2026-07-211-1/+17
|
* Zeroize all secret and sensitive dataDirkjan Ochtman2026-07-2011-11/+63
|
* proto: drop Copy derive for DigestDirkjan Ochtman2026-07-202-5/+5
|
* Hash classic secret directly into hybrid output hashDirkjan Ochtman2026-07-202-8/+9
|
* proto: track encoded shared secret as a SharedSecretDirkjan Ochtman2026-07-202-6/+6
|
* oxish: disallow authenticating as rootDirkjan Ochtman2026-07-202-2/+6
|
* oxish: more username validationDirkjan Ochtman2026-07-203-42/+106
|
* ci: add Codecov configDirkjan Ochtman2026-07-201-0/+10
|
* Add coverage badge to READMEDirkjan Ochtman2026-07-201-0/+1
|
* oxish: propagate coverage envDirkjan Ochtman2026-07-202-0/+8
|
* ci: submit code coverage data to CodecovDirkjan Ochtman2026-07-202-3/+20
|
* Add support for compiling aws-lc-rs in FIPS modeDirkjan Ochtman2026-07-206-8/+164
|
* Provide a narrower interface to host key signingDirkjan Ochtman2026-07-206-68/+109
|
* Use Box instead of Arc to wrap signing keysDirkjan Ochtman2026-07-206-21/+20
|
* oxish: avoid logging during pre_exec()Dirkjan Ochtman2026-07-201-5/+0
|
* oxish: inline SessionState::from_connection()Dirkjan Ochtman2026-07-202-49/+38
|
* oxish: move SessionState into crate rootDirkjan Ochtman2026-07-204-260/+256
|