```rust fn main() { let mut session = ssh::createsession(); session.isusagelog(true); session.setuserandpassword("root", "123456"); session.connect("127.0.0.1:22").unwrap();
// exec(&mut session);
// shell(&mut session);
// t_shell(&mut session);
// let mut scp = session.open_scp().unwrap();
// file upload
// scp.upload("localPath", "remotePath").unwrap();
// file download
// scp.download("localPath", "remotePath").unwrap();
}
fn exec(session: &mut Session) { let exec: ChannelExec = session.openexec().unwrap(); let vec = exec.sendcommand("ls -all").unwrap(); println!("{}", String::from_utf8(vec).unwrap()); }
fn shell(session: &mut Session) { let mut shell = session.openshell().unwrap(); thread::sleep(time::Duration::frommillis(200)); let vec = shell.read().unwrap(); let result = String::fromutf8(vec).unwrap(); println!("{}", result); shell.write(b"ls -a\n").unwrap(); thread::sleep(time::Duration::frommillis(200)); let vec = shell.read().unwrap(); let result = String::from_utf8(vec).unwrap(); println!("{}", result); shell.close().unwrap(); }
fn tshell(session: &mut Session) { let mut shell = session.openshell().unwrap(); loop {
sleep(Duration::from_millis(300));
let vec = shell.read().unwrap();
if vec.is_empty() { continue }
stdout().write(vec.as_slice()).unwrap();
stdout().flush().unwrap();
let mut cm = String::new();
stdin().read_line(&mut cm).unwrap();
shell.write(cm.as_bytes()).unwrap();
}
}
```
| algorithms | is supported |
|-------------------------------|---------------|
| curve25519-sha256 | √ |
| ecdh-sha2-nistp256 | √ |
| ssh-ed25519 | √ |
| rsa | √ |
| chacha20-poly1305@openssh.com | √ |
| user auth | is supported |
|------------------|--------------|
| publickey | × |
| password | √ |
| hostbased | × |
| channel | is supported |
|-----------|---------------|
| shell | √ |
| exec | √ |
| subsystem | × |