{"id":23484897,"url":"https://github.com/pluto/aes-circuits","last_synced_at":"2025-04-14T04:45:55.330Z","repository":{"id":252562837,"uuid":"831237560","full_name":"pluto/aes-circuits","owner":"pluto","description":"Circom AES-GCM circuits","archived":false,"fork":false,"pushed_at":"2025-03-18T21:15:24.000Z","size":682,"stargazers_count":29,"open_issues_count":3,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-18T22:25:04.811Z","etag":null,"topics":["circuit","cryptography","zk"],"latest_commit_sha":null,"homepage":"","language":"Circom","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/pluto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-07-20T02:26:16.000Z","updated_at":"2025-03-18T21:15:28.000Z","dependencies_parsed_at":"2024-08-26T23:53:43.630Z","dependency_job_id":"3f807520-448e-4714-ae94-71c415346e83","html_url":"https://github.com/pluto/aes-circuits","commit_stats":null,"previous_names":["pluto/aes-proof","pluto/aes-circuits"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluto%2Faes-circuits","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluto%2Faes-circuits/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluto%2Faes-circuits/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pluto%2Faes-circuits/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pluto","download_url":"https://codeload.github.com/pluto/aes-circuits/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248824666,"owners_count":21167343,"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":["circuit","cryptography","zk"],"created_at":"2024-12-24T22:11:32.906Z","updated_at":"2025-04-14T04:45:55.317Z","avatar_url":"https://github.com/pluto.png","language":"Circom","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  AES-GCM circom circuits\n\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/pluto/aes-proof/graphs/contributors\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/contributors/pluto/aes-proof?style=flat-square\u0026logo=github\u0026logoColor=8b949e\u0026labelColor=282f3b\u0026color=32c955\" alt=\"Contributors\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/pluto/aes-proof/actions/workflows/test.yaml\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/tests-passing-32c955?style=flat-square\u0026logo=github-actions\u0026logoColor=8b949e\u0026labelColor=282f3b\" alt=\"Tests\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/pluto/aes-proof/actions/workflows/lint.yaml\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/lint-passing-32c955?style=flat-square\u0026logo=github-actions\u0026logoColor=8b949e\u0026labelColor=282f3b\" alt=\"Lint\" /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003e [!WARNING]\n\u003e ⚠️ Repository No Longer Maintained ⚠️\n\u003ehttps://github.com/pluto/noir-web-prover-circuits\n\u003e This repository has been archived and is no longer maintained.\nAll development has moved to the [noir-web-prover-circuits](https://github.com/pluto/noir-web-prover-circuits) repository under the Pluto organization.\n\n## Overview\n\nThis repository contains an implementation of [AES-GCM](https://nvlpubs.nist.gov/nistpubs/legacy/sp/nistspecialpublication800-38d.pdf) in Circom. We have used circomkit to generate and test witnesses in the test files. We have also used to related rust code in the `src` generate test vectors from official cryptography libraries. The Circuits and circomkit tests are in the `circuits` directory.\n\n#### Design Documents\n\n- [AES-GCM deep dive](https://gist.github.com/thor314/53cdab54aaf16bdafd5ac936d5447eb8)\n\n### Prerequisites\n\nTo use this repo, you need to install the `just` command runner:\n\n```sh\ncargo install just\n# or use cargo binstall for fast install:\ncargo binstall -y just\n\n# install dependencies\njust install\n```\n\n### Testing\nTest witnesses are validated by circomkits tests. These can be run with:\n`just circom-test`\n\n## Testing Circom\nExample commands for using circom-kit\n```\njust circom-test # test all circom tests \njust circom-testg TESTNAME # test a named test\n\n# also see:\n`npx circomkit`: circomkit commands\n`npx circomkit compile \u003ccircuit\u003e`: equiv to `circom --wasm ...`\n`npx circomkit witness \u003ccircuit\u003e \u003cwitness.json\u003e`: equiv to call generate_witness.js\n```\n\n## License\n\nLicensed under the Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n\n## Contributing\n\nWe welcome contributions to our open-source projects. If you want to contribute or follow along with contributor discussions, join our [main Telegram channel](https://t.me/pluto_xyz/1) to chat about Pluto's development.\n\nOur contributor guidelines can be found in [CONTRIBUTING.md](./CONTRIBUTING.md). A good starting point is issues labelled 'bounty' in our repositories.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpluto%2Faes-circuits","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpluto%2Faes-circuits","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpluto%2Faes-circuits/lists"}