1
0
Fork 0
mirror of https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git synced 2025-12-28 13:22:19 +01:00
SSH Client and Server written in Rust
Find a file
2017-07-21 21:20:05 +02:00
src Change TcpStream to Read + Write trait 2017-07-21 21:20:05 +02:00
tests Run cargo fmt 2017-07-16 09:13:25 +02:00
.gitignore Initial commit 2017-07-12 22:39:08 +02:00
.rustfmt.toml Initial AES-CTR implementation 2017-07-18 15:41:33 +02:00
.travis.yml Fix travis build 2017-07-16 10:45:51 +02:00
Cargo.lock Implement channels 2017-07-20 17:31:02 +02:00
Cargo.toml Implement channels 2017-07-20 17:31:02 +02:00
LICENSE Initial commit 2017-07-12 22:39:08 +02:00
README.md Update README.md [skip-ci] 2017-07-19 12:29:38 +02:00

redox-ssh

A ssh client and server written entirely on rust, primarily targeted at Redox OS.

Features

Currently implemented features, ordered by priority:

  • SSH Server
  • SSH Client
  • Key Exchange algorithms
    • curve25519-sha256 (via rust-crypto)
    • diffie-hellman-group-exchange-sha1
  • Public Key algorithms
  • Encryption algorithms
  • MAC algorithms
  • 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/>.