{"id":20640384,"url":"https://github.com/thibmeu/age-plugin-simplepq","last_synced_at":"2025-04-15T22:59:10.778Z","repository":{"id":191055647,"uuid":"683838368","full_name":"thibmeu/age-plugin-simplepq","owner":"thibmeu","description":"Simple Post Quantum plugin for age","archived":false,"fork":false,"pushed_at":"2023-08-28T17:49:38.000Z","size":37,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T22:59:06.520Z","etag":null,"topics":["age-encryption","cli","cryptography","post-quantum"],"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/thibmeu.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2023-08-27T21:21:11.000Z","updated_at":"2025-02-09T19:23:12.000Z","dependencies_parsed_at":"2024-11-16T15:30:39.651Z","dependency_job_id":"5ec0b93a-7fde-4d84-a480-68460cfb2016","html_url":"https://github.com/thibmeu/age-plugin-simplepq","commit_stats":null,"previous_names":["thibmeu/age-plugin-simplepq"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmeu%2Fage-plugin-simplepq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmeu%2Fage-plugin-simplepq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmeu%2Fage-plugin-simplepq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thibmeu%2Fage-plugin-simplepq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thibmeu","download_url":"https://codeload.github.com/thibmeu/age-plugin-simplepq/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249167440,"owners_count":21223505,"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":["age-encryption","cli","cryptography","post-quantum"],"created_at":"2024-11-16T15:29:09.451Z","updated_at":"2025-04-15T22:59:10.755Z","avatar_url":"https://github.com/thibmeu.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# age-plugin-simplepq: Simple Post Quantum plugin for age\n\n[![Documentation](https://img.shields.io/badge/docs-main-blue.svg)][Documentation]\n![License](https://img.shields.io/crates/l/age-plugin-simplepq.svg)\n[![crates.io](https://img.shields.io/crates/v/age-plugin-simplepq.svg)][Crates.io]\n\n[Crates.io]: https://crates.io/crates/age-plugin-simplepq\n[Documentation]: https://docs.rs/age-plugin-simplepq/\n\nage-plugin-simplepq is a plugin for [age](https://github.com/C2SP/C2SP/blob/main/age.md). It provides an age Identity and Recipient consuming X25519Kyber768Draft00 encoded files.\n\nage-plugin are defined by [C2SP](https://github.com/C2SP/C2SP/blob/main/age.md).\n\n## Tables of Content\n\n* [Features](#features)\n* [Installation](#installation)\n* [Usage](#usage)\n* [Security Considerations](#security-considerations)\n* [FAQ](#faq)\n* [License](#license)\n\n## Features\n\n* Post Quantum recipients and identities with X25519Kyber768Draft00\n* Plugin cli for age\n* Cross platform (Linux, Windows, macOS)\n\n## What's next\n\n* Agree on age format\n\n## Installation\n\n| Environment        | CLI Command                         |\n|:-------------------|:------------------------------------|\n| Cargo (Rust 1.67+) | `cargo install age-plugin-simplepq` |\n\nRead [age installation instructions](https://github.com/FiloSottile/age#installation) to install age.\n\n## Usage\n\nYou can use the `--help` option to get more details about the command and its options.\n\n```text\nage-plugin-simplepq [-o OUTPUT]\nage-keygen-simplepq -y [-o OUTPUT] [INPUT]\n```\n\n### Generate recipient and identity\n\n```shell\nage-plugin-simplepq -o my_id.key\n```\n\nFor convenience, you can also create an associated recipient\n\n```shell\nage-plugin-simplepq -y -o my_id.key my_id.key\n```\n\n\u003e The recipient and identity size are going to be large.\n\n### Encrypt and decrypt\n\nEncrypt `Hello age-plugin-simplepq!` string with your new key.\n\n```shell\necho 'Hello age-plugin-simplepq!' | age -a -R my_id.key.pub \u003e data.age\nage --decrypt -i my_id.key data.age\nHello age-plugin-simplepq!\n```\n\n## Security Considerations\n\nThis software has not been audited. Please use at your sole discretion. With this in mind, age-plugin-simplepq security relies on the following:\n\n* [age](https://github.com/C2SP/C2SP/blob/main/age.md) encryption protocol, and its implementation in [str4d/rage](https://github.com/str4d/rage),\n* [HPKE RFC 9180](https://www.rfc-editor.org/rfc/rfc9180.html) by R. Barnes, K. Bhargavan, B. Lipp, C. Wood, its implementation in [rozbb/rust-hpke](https://github.com/rozbb/rust-hpke),and its binding for age [age-plugin-hpke](https://github.com/thibmeu/age-plugin-hpke) ,\n\n## FAQ\n\nEmpty\n\n## License\n\nThis project is under the MIT license.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be MIT licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthibmeu%2Fage-plugin-simplepq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthibmeu%2Fage-plugin-simplepq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthibmeu%2Fage-plugin-simplepq/lists"}