libssh-rs icon indicating copy to clipboard operation
libssh-rs copied to clipboard

Rust bindings for libssh https://www.libssh.org/

Results 8 libssh-rs issues
Sort by recently updated
recently updated
newest added

This callback is required for implementing ssh agent forward as unlike X11 forward, there is no other way to establish a forwarding channel. The API design looks slightly convoluted, it's...

This PR adds `from_cert_file` and `copy_to` methods to the `SshKey` struct.

this library was recently updated to use `libssh` v0.10.6. `libssh` v0.10.0 added support for using `mbedtls` (instead of `openssl`). can we add a feature to enable building `libssh` with option...

Hi, I was going through the code and found this method ``` pub fn [open_forward](https://docs.rs/libssh-rs/latest/libssh_rs/struct.Channel.html#method.open_forward)( &self, remote_host: &[str](https://doc.rust-lang.org/nightly/std/primitive.str.html), remote_port: [u16](https://doc.rust-lang.org/nightly/std/primitive.u16.html), source_host: &[str](https://doc.rust-lang.org/nightly/std/primitive.str.html), source_port: [u16](https://doc.rust-lang.org/nightly/std/primitive.u16.html) ) -> [SshResult](https://docs.rs/libssh-rs/latest/libssh_rs/type.SshResult.html) ``` I am...

See issue https://github.com/wez/libssh-rs/issues/30

I am getting a linker error when trying to build for the `x86_64-pc-windows-gnu` target. My executable links correctly for the `x86_64-pc-windows-msvc` target. The root cause is that the MSVC and...

I have jumphosts in AWS accounts, and I connect to the hosts via ec2 instance connect. I have some artificial host names following the structure `{ec2_jumphost_name}.{aws_profile_name}` My config looks something...

Does libssh-rs support jumphosts? I'm trying to SSHMUX connect to a host that needs a jumphost in between. The ssh-config for the host looks like the following: ``` Host jump-host...