1
0
Fork 0
mirror of https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git synced 2025-12-28 18:42:18 +01:00
redox-ssh/README.md
2017-07-19 12:29:38 +02:00

41 lines
1.5 KiB
Markdown

# redox-ssh
A ssh client and server written entirely on rust, primarily targeted at [Redox OS](http://redox-os.org).
## Features
Currently implemented features, ordered by priority:
- [x] SSH Server
- [ ] SSH Client
- Key Exchange algorithms
- [x] `curve25519-sha256` (via [rust-crypto](https://github.com/DaGenix/rust-crypto))
- [ ] `diffie-hellman-group-exchange-sha1`
- Public Key algorithms
- [x] `ssh-ed25519` (via [rust-crypto](https://github.com/DaGenix/rust-crypto))
- [ ] `ssh-rsa`
- Encryption algorithms
- [x] `aes256-ctr` (via [rust-crypto](https://github.com/DaGenix/rust-crypto))
- [ ] `aes256-gcm`
- MAC algorithms
- [x] `hmac-sha2-256` (via [rust-crypto](https://github.com/DaGenix/rust-crypto))
- [ ] Port forwarding
- [ ] SCP File Transfers
## License
Redox SSH
Copyright (C) 2017 Thomas Gatzweiler
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.