{"id":21732429,"url":"https://github.com/honzasp/makiko","last_synced_at":"2026-03-07T02:33:53.899Z","repository":{"id":37205830,"uuid":"500848909","full_name":"honzasp/makiko","owner":"honzasp","description":"Asynchronous SSH client library in pure Rust","archived":false,"fork":false,"pushed_at":"2025-03-29T19:30:07.000Z","size":1097,"stargazers_count":53,"open_issues_count":2,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-29T07:57:41.269Z","etag":null,"topics":["async","rust","ssh","ssh-client","ssh-client-library","ssh-library","tokio"],"latest_commit_sha":null,"homepage":"https://honzasp.github.io/makiko/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/honzasp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-07T13:20:10.000Z","updated_at":"2025-10-10T19:17:07.000Z","dependencies_parsed_at":"2025-04-06T14:10:43.626Z","dependency_job_id":"fcd1e07f-3c56-4b38-8dc9-ec811d4542ea","html_url":"https://github.com/honzasp/makiko","commit_stats":{"total_commits":66,"total_committers":1,"mean_commits":66.0,"dds":0.0,"last_synced_commit":"e769c35d07fb5d3392db96cd0ce476cacddd02b5"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/honzasp/makiko","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honzasp%2Fmakiko","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honzasp%2Fmakiko/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honzasp%2Fmakiko/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honzasp%2Fmakiko/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/honzasp","download_url":"https://codeload.github.com/honzasp/makiko/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honzasp%2Fmakiko/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30206070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"online","status_checked_at":"2026-03-07T02:00:06.765Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async","rust","ssh","ssh-client","ssh-client-library","ssh-library","tokio"],"created_at":"2024-11-26T04:30:23.994Z","updated_at":"2026-03-07T02:33:53.879Z","avatar_url":"https://github.com/honzasp.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Makiko\n\nMakiko is an asynchronous SSH client library in pure Rust.\n\n**[Tutorial][tutorial] | [API docs][docs-rs] | [Github][github] | [Crate][crates-io]**\n\n[tutorial]: https://honzasp.github.io/makiko/tutorial\n[docs-rs]: https://docs.rs/makiko/latest/makiko\n[github]: https://github.com/honzasp/makiko\n[crates-io]: https://crates.io/crates/makiko\n\n## Features\n\n- SSH protocol 2\n- Authentication methods: publickey, password, none\n- Shell/exec sessions\n- Remote and local tunnels\n- Raw SSH channels (low-level API)\n- Ciphers: chacha20-poly1305, aes128-gcm, aes256-gcm, aes128-ctr, aes192-ctr,\n  aes256-ctr, aes128-cbc*, aes192-cbc*, aes256-cbc*, 3des-cbc**\n- MACs: hmac-sha2-256-etm, hmac-sha2-512-etm, hmac-sha2-256, hmac-sha2-512,\n  hmac-sha1-etm*, hmac-sha1*\n- Public key algorithms: ssh-ed25519, rsa-sha2-256, rsa-sha2-512,\n  ecdsa-sha2-nistp256*, ecdsa-sha2-nistp384*, ssh-rsa*\n- Key exchange algorithms: curve25519-sha256, diffie-hellman-group14-sha1*,\n  diffie-hellman-group14-sha256*, diffie-hellman-group16-sha512*,\n  diffie-hellmann-group18-sha512*, diffie-hellman-group1-sha1**\n- Crypto from [Rust Crypto][rust-crypto]\n- Use your own sockets, spawn your own tasks\n- Uses [Tokio][tokio] interfaces (but does not depend on the Tokio runtime)\n- Rust all the way down: no dependency on non-Rust libraries, direct or indirect\n\n[rust-crypto]: https://github.com/RustCrypto\n[tokio]: https://tokio.rs/\n\n(* Algorithms marked with an asterisk are not enabled by default)\n(** Algorithms marked with two asterisks are only available with feature `insecure-crypto`)\n\n## Low-level\n\nMakiko gives you a lot of control over the SSH connection, it is meant to be a\nbuilding block for libraries and advanced applications.\n\n\u003e Makiko and most of the cryptography crates from [Rust Crypto][rust-crypto]\n\u003e that Makiko uses have not yet been audited by a trusted third party. Use at\n\u003e your own risk!\n\n## Contributing\n\nContributions are welcome! Please contact me ([@honzasp][honzasp]) or open a\npull request.\n\n[honzasp]: https://github.com/honzasp\n\n## License\n\nThis software is released into the public domain. Please see [UNLICENSE](UNLICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhonzasp%2Fmakiko","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhonzasp%2Fmakiko","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhonzasp%2Fmakiko/lists"}