{"id":22916377,"url":"https://github.com/sorairolake/abcrypt-zig","last_synced_at":"2025-04-01T12:43:31.980Z","repository":{"id":267982959,"uuid":"902951724","full_name":"sorairolake/abcrypt-zig","owner":"sorairolake","description":"A simple, modern and secure file encryption library for Zig","archived":false,"fork":false,"pushed_at":"2025-03-22T15:56:27.000Z","size":74,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-03-22T16:36:14.457Z","etag":null,"topics":["abcrypt","abcrypt-encryption","argon2","argon2id","blake2","blake2b","chacha20","chacha20-poly1305","encryption","poly1305","xchacha20","xchacha20-poly1305","zig","zig-library","zig-package","ziglang"],"latest_commit_sha":null,"homepage":"","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sorairolake.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.adoc","contributing":"CONTRIBUTING.adoc","funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.adoc","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-13T15:56:54.000Z","updated_at":"2025-03-22T15:56:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"baf3ffa8-8d89-4698-8c52-3ea0c592dbc5","html_url":"https://github.com/sorairolake/abcrypt-zig","commit_stats":null,"previous_names":["sorairolake/abcrypt-zig"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fabcrypt-zig","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fabcrypt-zig/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fabcrypt-zig/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sorairolake%2Fabcrypt-zig/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sorairolake","download_url":"https://codeload.github.com/sorairolake/abcrypt-zig/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246642092,"owners_count":20810543,"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":["abcrypt","abcrypt-encryption","argon2","argon2id","blake2","blake2b","chacha20","chacha20-poly1305","encryption","poly1305","xchacha20","xchacha20-poly1305","zig","zig-library","zig-package","ziglang"],"created_at":"2024-12-14T06:12:34.821Z","updated_at":"2025-04-01T12:43:31.967Z","avatar_url":"https://github.com/sorairolake.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2024 Shun Sakai\n\nSPDX-License-Identifier: Apache-2.0 OR MIT\n--\u003e\n\n# abcrypt-zig\n\n[![CI][ci-badge]][ci-url]\n\n**abcrypt-zig** is an implementation of the [abcrypt encrypted data format].\n\nThis package supports version 1 of the abcrypt format.\n\n## Usage\n\nAdd this package to your `build.zig.zon`:\n\n```sh\nzig fetch --save git+https://github.com/sorairolake/abcrypt-zig.git\n```\n\nAdd the following to your `build.zig`:\n\n```zig\nconst abcrypt = b.dependency(\"abcrypt\", .{});\nexe.root_module.addImport(\"abcrypt\", abcrypt.module(\"abcrypt\"));\n```\n\n### Documentation\n\nTo build the documentation:\n\n```sh\nzig build doc\n```\n\nThe result is generated in `zig-out/doc/abcrypt`.\n\nIf you want to preview this, run a HTTP server locally. For example:\n\n```sh\npython -m http.server -d zig-out/doc/abcrypt\n```\n\nThen open `http://localhost:8000/` in your browser.\n\n## Zig version\n\nThis library is compatible with Zig version 0.14.0.\n\n## Source code\n\nThe upstream repository is available at\n\u003chttps://github.com/sorairolake/abcrypt-zig.git\u003e.\n\nThe source code is also available at:\n\n- \u003chttps://gitlab.com/sorairolake/abcrypt-zig.git\u003e\n- \u003chttps://codeberg.org/sorairolake/abcrypt-zig.git\u003e\n\n## Changelog\n\nPlease see [CHANGELOG.adoc].\n\n## Contributing\n\nPlease see [CONTRIBUTING.adoc].\n\n## License\n\nCopyright (C) 2024 Shun Sakai (see [AUTHORS.adoc])\n\nThis library is distributed under the terms of either the _Apache License 2.0_\nor the _MIT License_.\n\nThis project is compliant with version 3.3 of the [_REUSE Specification_]. See\ncopyright notices of individual files for more details on copyright and\nlicensing information.\n\n[ci-badge]: https://img.shields.io/github/actions/workflow/status/sorairolake/abcrypt-zig/CI.yaml?branch=develop\u0026style=for-the-badge\u0026logo=github\u0026label=CI\n[ci-url]: https://github.com/sorairolake/abcrypt-zig/actions?query=branch%3Adevelop+workflow%3ACI++\n[abcrypt encrypted data format]: https://sorairolake.github.io/abcrypt/book/format.html\n[CHANGELOG.adoc]: CHANGELOG.adoc\n[CONTRIBUTING.adoc]: CONTRIBUTING.adoc\n[AUTHORS.adoc]: AUTHORS.adoc\n[_REUSE Specification_]: https://reuse.software/spec-3.3/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Fabcrypt-zig","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsorairolake%2Fabcrypt-zig","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsorairolake%2Fabcrypt-zig/lists"}