{"id":16985756,"url":"https://github.com/r4gus/ccdb","last_synced_at":"2026-02-23T04:01:47.369Z","repository":{"id":248372221,"uuid":"793779871","full_name":"r4gus/ccdb","owner":"r4gus","description":"CBOR Credential Database Format","archived":false,"fork":false,"pushed_at":"2025-03-30T21:50:01.000Z","size":1296,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-21T16:20:13.577Z","etag":null,"topics":["credential-manager","credential-store","passkey","password","password-database","zig","zig-package"],"latest_commit_sha":null,"homepage":"https://r4gus.github.io/ccdb/","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/r4gus.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2024-04-29T21:12:39.000Z","updated_at":"2025-03-30T21:49:19.000Z","dependencies_parsed_at":"2024-07-14T12:49:24.658Z","dependency_job_id":"ce7c2aad-fd88-481c-95be-0f6bc23ae4b4","html_url":"https://github.com/r4gus/ccdb","commit_stats":null,"previous_names":["r4gus/ccdb"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/r4gus/ccdb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r4gus%2Fccdb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r4gus%2Fccdb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r4gus%2Fccdb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r4gus%2Fccdb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/r4gus","download_url":"https://codeload.github.com/r4gus/ccdb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/r4gus%2Fccdb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29736978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T02:24:00.660Z","status":"ssl_error","status_checked_at":"2026-02-23T02:22:56.087Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["credential-manager","credential-store","passkey","password","password-database","zig","zig-package"],"created_at":"2024-10-14T02:44:07.684Z","updated_at":"2026-02-23T04:01:47.350Z","avatar_url":"https://github.com/r4gus.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CBOR Credential Database Format\n\nThis document describes a format to store secrets at rest based on the CBOR data format. It is designed as an alternative to other file formats like KDBX used with KeePass and KeePassXC.\n\n## Source Code\n\n### Installation\n\nVersions:\n\n| Zig version | ccdb version |\n|:-----------:|:------------:|\n| 0.13.0      | 0.1.0, 0.2.0 |\n| 0.14.0      | 0.3.0 |\n\n#### Module\n\nThe `ccdb` module can be added to your projects by adding `ccdb` to your list of dependencies in `build.zig.zon`.\n\n```zig\n.dependencies = .{\n    //...\n    .ccdb = .{\n        .url = \"https://github.com/r4gus/ccdb/archive/refs/tags/0.1.0.tar.gz\",\n        // Adjust the hash if you use another version!\n        .hash = \"12202413b8cfe91ea51f3680b8eaa5645870a6e3fabc5cb9076c80f8182ea1d4028f\",\n    },\n},\n```\n\nAlternatively you can use the following command, which will automatically add `ccdb` as an dependency to your `build.zig.zon` file:\n\n```bash\n# Replace \u003cVERSION TAG\u003e with the version you want to use\nzig fetch --save https://github.com/r4gus/ccdb/archive/refs/tags/\u003cVERSION TAG\u003e.tar.gz\n``` \n\nYou can then import the module within your `build.zig`.\n\n```zig\nconst ccdb_dep = b.dependency(\"ccdb\", .{\n    .target = target,\n    .optimize = optimize,\n});\n\n// Create a exe or library and then...\nexe.root_module.addImport(\"ccdb\", ccdb_dep.module(\"ccdb\"));\n```\n\n#### Command Line Tool\n\nYou can manage a CCDB database from the command line using `ccdbcmd`. Run `build zig -Doptimize=ReleaseSmall`\nto build the executable.\n\n## Documentation\n\nYou can build the documentation by running `bikeshed` within the `/docs` folder.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr4gus%2Fccdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fr4gus%2Fccdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fr4gus%2Fccdb/lists"}