{"id":51486594,"url":"https://github.com/bodrovis-learning/brave-signer","last_synced_at":"2026-07-07T07:01:23.770Z","repository":{"id":238904937,"uuid":"797927328","full_name":"bodrovis-learning/brave-signer","owner":"bodrovis-learning","description":"Bravely generate key pairs, sign files, and check signatures.","archived":false,"fork":false,"pushed_at":"2026-06-03T11:07:56.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-06-03T13:07:35.913Z","etag":null,"topics":["argon2","ed25519","go","golang","signature-verification"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bodrovis-learning.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-08T18:47:09.000Z","updated_at":"2026-06-03T11:07:59.000Z","dependencies_parsed_at":"2024-05-08T19:56:33.204Z","dependency_job_id":"79823338-1d20-48d9-aaae-1ae8beafccad","html_url":"https://github.com/bodrovis-learning/brave-signer","commit_stats":null,"previous_names":["bodrovis-learning/brave_signer","bodrovis-learning/brave-signer"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/bodrovis-learning/brave-signer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodrovis-learning%2Fbrave-signer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodrovis-learning%2Fbrave-signer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodrovis-learning%2Fbrave-signer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodrovis-learning%2Fbrave-signer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bodrovis-learning","download_url":"https://codeload.github.com/bodrovis-learning/brave-signer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bodrovis-learning%2Fbrave-signer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35218117,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-07T02:00:07.222Z","response_time":90,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["argon2","ed25519","go","golang","signature-verification"],"created_at":"2026-07-07T07:01:22.191Z","updated_at":"2026-07-07T07:01:23.746Z","avatar_url":"https://github.com/bodrovis-learning.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BraveSigner\n\n\u003e Bravely generate key pairs, sign files, and check signatures.\n\nBraveSigner is a Go-powered CLI tool that lets you generate cryptographic key pairs, sign files, and verify digital signatures using [Ed25519](https://ed25519.cr.yp.to/). It prioritizes strong encryption practices, ease of use, and flexibility.\n\n**[Full command reference in `/docs/brave-signer.md`](./docs/brave-signer.md)**\n\n---\n\n## Usage\n\n```\nbrave-signer COMMAND FLAGS\n```\n\nAvailable commands:\n\n- `keys generate [--pub-key-path pub_key.pem] [--priv-key-path priv_key.pem]`  \n  Generate an Ed25519 key pair.  \n  The private key is encrypted with XChaCha20Poly1305 using a passphrase you enter, derived securely via Argon2.\n\n- `signatures signfile --file-path PATH_TO_FILE --signer-id SIGNER_NAME_OR_ID [--priv-key-path priv_key.pem]`  \n  Sign a file using your private key.  \n  A `.sig` file will be created next to the original file, containing the signature and signer ID (up to 65,535 characters).\n\n- `signatures verifyfile --file-path PATH_TO_FILE [--pub-key-path pub_key.pem]`  \n  Verify a file against its `.sig` using an Ed25519 public key.  \n  The `.sig` file should be named `\u003cfilename\u003e.sig` and stored alongside the original.\n\n---\n\n## Configuration\n\nAll command line arguments can also be specified inside a config file. By default the script searches for a `config.yaml` file inside the current directory but it can be adjusted with the following CLI arguments:\n\n* `--config-file-name` (defaults to `config`)\n* `--config-file-type` (defaults to `yaml`)\n* `--config-path` (defaults to `.`)\n\nFor example, to adjust the signer:\n\n```yaml\nsigner-id: John Doe\n```\n\nIn this case, you don't need to provide `--signer-id` when calling `signatures signfile`.\n\nNote that CLI flags have priority over the parameters provided in the config file.\n\n### Environment variables\n\nAll parameters can also be provided via environment variables. This is useful in CI/CD setups, containerized environments, or when you want to avoid hardcoding values in config files.\n\nEnvironment variables follow this format:\n\n```\nbrave-signer_\u003cPARAMETER_NAME\u003e\n```\n\nHyphens (-) in parameter names are replaced with underscores (_). For example `--file-path` can be set with `brave-signer_FILE_PATH`.\n\n### Precedence order\n\nWhen resolving configuration values, the priority is as follows:\n\n1. Command-line arguments\n2. Environment variables\n3. Config file (config.yaml, etc.)\n4. Default values\n\n## License\n\n(c) [Ilya Krukowski](https://bodrovis.tech)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodrovis-learning%2Fbrave-signer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbodrovis-learning%2Fbrave-signer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbodrovis-learning%2Fbrave-signer/lists"}