{"id":18308502,"url":"https://github.com/heroesofcode/cryptotools","last_synced_at":"2026-01-25T13:32:28.504Z","repository":{"id":232273537,"uuid":"783484670","full_name":"heroesofcode/cryptotools","owner":"heroesofcode","description":"cryptotools is a cryptography library","archived":false,"fork":false,"pushed_at":"2026-01-23T14:53:10.000Z","size":80,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-24T06:03:44.807Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/heroesofcode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-08T01:36:25.000Z","updated_at":"2026-01-23T14:52:40.000Z","dependencies_parsed_at":"2024-04-12T03:39:01.778Z","dependency_job_id":"42f18e2b-a3d0-4078-99a0-ee381d5ef47f","html_url":"https://github.com/heroesofcode/cryptotools","commit_stats":null,"previous_names":["heroesofcode/cryptotools"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/heroesofcode/cryptotools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heroesofcode%2Fcryptotools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heroesofcode%2Fcryptotools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heroesofcode%2Fcryptotools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heroesofcode%2Fcryptotools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heroesofcode","download_url":"https://codeload.github.com/heroesofcode/cryptotools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heroesofcode%2Fcryptotools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753438,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-05T16:08:14.773Z","updated_at":"2026-01-25T13:32:28.500Z","avatar_url":"https://github.com/heroesofcode.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cryptotools\n\n[![CI](https://github.com/heroesofcode/cryptotools/actions/workflows/CI.yml/badge.svg)](https://github.com/heroesofcode/cryptotools/actions/workflows/CI.yml)\n[![Crates.io](https://img.shields.io/crates/v/cryptotools)](https://crates.io/crates/cryptotools)\n[![Docs](https://docs.rs/cryptotools/badge.svg)](https://docs.rs/cryptotools)\n[![License](https://img.shields.io/github/license/heroesofcode/cryptotools.svg)](https://github.com/heroesofcode/cryptotools/blob/main/LICENSE)\n\ncryptotools is a simple, easy-to-use library for cryptographic utilities in Rust. It currently provides the following:\n\n- [x] Base64 encoding\n- [x] Base64 decoding\n- [x] MD5 encryption (hashing)\n\n## Installing\n\ncargo add cryptotools\n\n```toml\n[dependencies]\ncryptotools = \"0.3.0\"\n```\n\n## Usage\n\n### Base64 Encoding \u0026 Decoding\n\n```rust\nuse cryptotools::encode_base64::Base64Encode;\nuse cryptotools::decode_base64::Base64Decode;\n\nlet input = \"hello world\";\nlet encoded = Base64Encode::encode(input);\nprintln!(\"Base64 Encoded: {}\", encoded);\n\nlet decoded = Base64Decode::decode(\u0026encoded);\nprintln!(\"Base64 Decoded: {}\", decoded);\n```\n\n### MD5 Hashing\n\n```rust\nuse cryptotools::encrypt_md5::MD5;\n\nlet input = \"password123\";\nlet hash = MD5::encrypt(input);\nprintln!(\"MD5 Hash: {}\", hash);\n```\n\n## License\n\ncryptotools is released under the MIT license. See [LICENSE](https://github.com/heroesofcode/cryptotools/blob/main/LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheroesofcode%2Fcryptotools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheroesofcode%2Fcryptotools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheroesofcode%2Fcryptotools/lists"}