https://github.com/juliaweb/libssh.jl
A Julia wrapper for libssh.
https://github.com/juliaweb/libssh.jl
julia libssh ssh
Last synced: 10 months ago
JSON representation
A Julia wrapper for libssh.
- Host: GitHub
- URL: https://github.com/juliaweb/libssh.jl
- Owner: JuliaWeb
- License: mit
- Created: 2023-12-23T16:08:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T10:45:35.000Z (about 1 year ago)
- Last Synced: 2025-04-12T16:16:22.010Z (10 months ago)
- Topics: julia, libssh, ssh
- Language: Julia
- Homepage: https://juliaweb.github.io/LibSSH.jl/
- Size: 1.75 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LibSSH.jl
[](https://juliaweb.github.io/LibSSH.jl/stable) [](https://juliaweb.github.io/LibSSH.jl/dev) [](https://codecov.io/gh/JuliaWeb/LibSSH.jl)
A Julia wrapper for [libssh](https://www.libssh.org). Sneak peak:
```julia
import LibSSH as ssh
session = ssh.Session("foo.com")
ssh.userauth_password(session, "password")
close(session)
```
See the docs for more information.