1
0
Fork 0
mirror of https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git synced 2025-12-29 04:02:18 +01:00
Commit graph

18 commits

Author SHA1 Message Date
cedf6ce410
Fix (clippy): Several fixes
- Remove enum suffixes (`enum_variant_names`)
- Match de-/referencing (`match_ref_pats`)
- Unused lifetime parameter (`extra_unused_lifetimes`)
- Rename `to_raw` to `into_raw` to match convention (`wrong_self_convention`)

All remaining warnings are in regards to unused variables, methods, enum variants, fields, or unreachable patterns.
Also, unit result error types (`Result<u8, ()>`) remain (`result_unit_err`).
2024-09-26 16:04:11 +02:00
086b65038d
Fix (lints): Run clippy automatic fixes 2024-09-26 14:19:25 +02:00
86f0cc82c3
Update to Rust Edition 2021 and fix compilation errors 2024-09-26 13:43:01 +02:00
Wildan M
16a8673948 Cleanup non-destructive warnings 2024-04-16 04:51:10 +07:00
Thomas Gatzweiler
46e4bfab79 Implement Write for Packet 2017-07-21 21:26:34 +02:00
Thomas Gatzweiler
fe447bf443 Implement hmac-sha2-256 2017-07-18 21:09:46 +02:00
Thomas Gatzweiler
64e44de13a Initial AES-CTR implementation 2017-07-18 15:41:33 +02:00
Thomas Gatzweiler
d71b352b54 Complete Curve25519 implementation 2017-07-18 13:37:54 +02:00
Thomas Gatzweiler
673ba67f61 Add verbose option to sshd 2017-07-16 15:34:12 +02:00
Thomas Gatzweiler
86d7d48a29 Implement ConnectionError 2017-07-16 13:49:09 +02:00
Thomas Gatzweiler
ba376a9add Flush stream after writing a packet 2017-07-16 11:00:34 +02:00
Thomas Gatzweiler
a9fb733bea Run cargo fmt 2017-07-16 09:13:25 +02:00
Thomas Gatzweiler
5d81f21f3f Implement server host key file 2017-07-15 15:59:37 +02:00
Thomas Gatzweiler
4dcfe63ab5 Add ED25519 crypto system 2017-07-15 13:38:03 +02:00
Thomas Gatzweiler
abb40764ab Add public/private key traits 2017-07-15 09:28:03 +02:00
Thomas Gatzweiler
8f19dadccc Add BigInt 2017-07-14 14:41:59 +02:00
Thomas Gatzweiler
6dd79b785d Discard the usage of nom 2017-07-14 12:20:19 +02:00
Thomas Gatzweiler
587f810172 Initial commit 2017-07-12 22:39:08 +02:00