{"id":27226114,"url":"https://github.com/t1ltxz-gxd/vaultkey","last_synced_at":"2025-06-21T17:33:29.106Z","repository":{"id":287052919,"uuid":"963469316","full_name":"t1ltxz-gxd/vaultkey","owner":"t1ltxz-gxd","description":"vaultkey is an open-source Rust library for generating secure, customizable passwords. It supports various character sets and lengths, providing cryptographically secure random passwords for any use case. Contributions are welcome to improve and expand the library. ","archived":false,"fork":false,"pushed_at":"2025-04-23T21:36:50.000Z","size":203,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-31T08:21:13.185Z","etag":null,"topics":["cryptography","key-generation","open-source","password-generation","password-manager","random-password","rust","rust-crate","rust-library","secure-random","security"],"latest_commit_sha":null,"homepage":"https://docs.rs/vaultkey/","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/t1ltxz-gxd.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}},"created_at":"2025-04-09T18:20:18.000Z","updated_at":"2025-04-23T21:36:49.000Z","dependencies_parsed_at":"2025-05-30T22:58:34.270Z","dependency_job_id":"a09572ce-83b4-49e9-b9dd-e5deaf67b80b","html_url":"https://github.com/t1ltxz-gxd/vaultkey","commit_stats":null,"previous_names":["t1ltxz-gxd/vaultkey"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/t1ltxz-gxd/vaultkey","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t1ltxz-gxd%2Fvaultkey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t1ltxz-gxd%2Fvaultkey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t1ltxz-gxd%2Fvaultkey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t1ltxz-gxd%2Fvaultkey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/t1ltxz-gxd","download_url":"https://codeload.github.com/t1ltxz-gxd/vaultkey/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t1ltxz-gxd%2Fvaultkey/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261166156,"owners_count":23118986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cryptography","key-generation","open-source","password-generation","password-manager","random-password","rust","rust-crate","rust-library","secure-random","security"],"created_at":"2025-04-10T11:47:10.250Z","updated_at":"2025-06-21T17:33:24.085Z","avatar_url":"https://github.com/t1ltxz-gxd.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n[![Preview](/assets/images/hero.png)](https://github.com/t1ltxz-gxd/vaultkey)\n\u003cp\u003e \n    Rust library for generating secure and customizable passwords. With support for various character sets and lengths, \n    it helps you create strong and random passwords for any use case, ensuring high security for your applications.\n\u003c/p\u003e\n\n---\n[![GitHub License](https://img.shields.io/github/license/t1ltxz-gxd/vaultkey)](https://github.com/t1ltxz-gxd/vaultkey/blob/main/LICENSE \"license\")\n[![Tests](https://img.shields.io/github/actions/workflow/status/t1ltxz-gxd/vaultkey/ci.yml?style=flat-square\u0026logo=github\u0026label=Tests)](https://github.com/t1ltxz-gxd/vaultkey/tests)\n[![Forks](https://custom-icon-badges.demolab.com/github/forks/t1ltxz-gxd/vaultkey?logo=fork)](https://github.com/t1ltxz-gxd/vaultkey/network/members)\n[![Contributors](https://custom-icon-badges.demolab.com/github/contributors/t1ltxz-gxd/vaultkey?logo=people)](https://github.com/t1ltxz-gxd/vaultkey/graphs/contributors)\n[![Stars](https://custom-icon-badges.demolab.com/github/stars/t1ltxz-gxd/vaultkey?logo=star)](https://github.com/t1ltxz-gxd/vaultkey/stargazers)\n[![Open issues](https://custom-icon-badges.demolab.com/github/issues-raw/t1ltxz-gxd/vaultkey?logo=issue)](https://github.com/t1ltxz-gxd/vaultkey/issues)\n\n\n[![Powered by Rust](https://custom-icon-badges.herokuapp.com/badge/-Powered%20by%20Rust-0d1620?logo=rust)](https://www.rust-lang.org/ \"Powered by Rust\")\n\u003c/div\u003e\n\n___\n\n## 🧩 Installation\nAdd the following to your `Cargo.toml` file:\n```toml\n[dependencies]\nvaultkey = {version = \"*\"}\n```\n\n## 📖 Usage\n\n### Generate a random password\n```rust\nuse vaultkey::PasswordBuilder;\n\nfn main() {\n    for i in 0..10 {\n        let password = PasswordBuilder::default()\n            .length(50)\n            .with_uppercase(true)\n            .min_digits(2)\n            .min_specials(2)\n            .avoid_ambiguous(true)\n            .build()\n            .unwrap();\n\n        println!(\"Generated password {}: {}\", i + 1, password);\n    }\n}\n```\n\n### Output:\n```\nGenerated password 1: Y*4M\u003e{e/\u003erDh:j=?K[]@9E#s|L\u0026@k=BSpq9L+r@*RK_u\u003eD;a-5\nGenerated password 2: 6.8CRjvc%4?JB[#$f3qmkX8dB@jC{|$-}4Ruh%+j|q)$raBv}Y\nGenerated password 3: qWTo%{^8,=bYQ]y3{3=xV869_Dy67%q7wbq!-xR.gv,eF]f\u003eE}\nGenerated password 4: b?}..{=ued2axY@FHFcBr|]%{b{r*@2RErJKVK((.34v{(?e!2\nGenerated password 5: rF8n%ia%?8K4]52.gD86K,\u003c$fH\u0026%yg77;P?_#+G9JAtr::GWLp\nGenerated password 6: v#ZY\u003e#tH[ufX+=4eYYX}$sQ\u003c=3-8([j%f\u003cdJdXadyc]3E,yB!8\nGenerated password 7: SWcAy%WsE#d]bZj2#!$5cffw\u0026-@!9n_{83wEmu]/P:#\u003e;wV_5j\nGenerated password 8: 63#wX=vVStBY?_:+S-|_mt6.u;/n+}|S+Qvetp95PCG|st\u0026;2t\nGenerated password 9: YryFs}(!9Nq#?-$z!\u003chuF8$8=ufg4m\u003cQWZTaNMLr)n4\u003e5sm/)]\nGenerated password 10: bM+HQ!t[s2b)8q%6R|\u0026Sa-4m9/T_[=imjDEZr\u003ea\u0026\u0026gnN_-iRqQ\n```\n\n### See all examples in the `examples` folder.\n\n___\n\n## 🤝 Contributing\n\nContributions are what make the open source community an amazing place to learn, be inspired, and create.\nAny contributions you make are **greatly appreciated**.\n\n1. [Fork the repository](https://github.com/t1ltxz-gxd/vaultkey/fork)\n2. Clone your fork `git clone https://github.com/t1ltxz-gxd/vaultkey.git`\n3. Create your feature branch `git checkout -b feat-smth-amazing`\n4. Stage changes `git add .`\n5. Commit your changes `git commit -m 'feat: add some amazing feature'`\n   - Use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) for commit messages.\n   - Use `fix`, `feat`, `docs`, `style`, `refactor`, `perf`, `test`, `chore` prefixes.\n   - Use the present tense (\"add feature\" not \"added feature\").\n   - Use the imperative mood (\"move cursor to...\" not \"moves cursor to...\").\n   - Limit the first line to 72 characters or less.\n   - Reference issues and pull requests liberally after the first line.\n6. Push to the branch `git push origin feat-smth-amazing`\n7. Submit a pull request\n\n## ❤️ Credits\n\nReleased with ❤️ by [Tilt](https://github.com/t1ltxz-gxd).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft1ltxz-gxd%2Fvaultkey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ft1ltxz-gxd%2Fvaultkey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft1ltxz-gxd%2Fvaultkey/lists"}