{"id":21814321,"url":"https://github.com/snawoot/quickcerts","last_synced_at":"2025-04-13T23:46:22.680Z","repository":{"id":57459391,"uuid":"192241383","full_name":"Snawoot/quickcerts","owner":"Snawoot","description":"Quick and easy X.509 certificate generator for SSL/TLS utilizing local PKI","archived":false,"fork":false,"pushed_at":"2023-04-26T09:42:29.000Z","size":34,"stargazers_count":20,"open_issues_count":2,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T13:51:22.676Z","etag":null,"topics":["certificate","certificates","ssl-cert","ssl-certificate","ssl-certificates","ssl-client-certificate","tls-certificate","tls-certificates","x509","x509certificates"],"latest_commit_sha":null,"homepage":"","language":"Python","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/Snawoot.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":"2019-06-16T22:10:12.000Z","updated_at":"2024-10-01T19:26:26.000Z","dependencies_parsed_at":"2024-11-27T15:01:47.935Z","dependency_job_id":null,"html_url":"https://github.com/Snawoot/quickcerts","commit_stats":{"total_commits":27,"total_committers":3,"mean_commits":9.0,"dds":0.2222222222222222,"last_synced_commit":"e012d933bed723f4b21afb81249a833842371f8f"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Snawoot%2Fquickcerts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Snawoot%2Fquickcerts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Snawoot%2Fquickcerts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Snawoot%2Fquickcerts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Snawoot","download_url":"https://codeload.github.com/Snawoot/quickcerts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248799695,"owners_count":21163398,"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":["certificate","certificates","ssl-cert","ssl-certificate","ssl-certificates","ssl-client-certificate","tls-certificate","tls-certificates","x509","x509certificates"],"created_at":"2024-11-27T14:37:43.764Z","updated_at":"2025-04-13T23:46:22.646Z","avatar_url":"https://github.com/Snawoot.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# quickcerts\n\n[![quickcerts](https://snapcraft.io//quickcerts/badge.svg)](https://snapcraft.io/quickcerts)\n\nQuick and easy X.509 certificate generator for SSL/TLS utilizing local PKI\n\n---\n\n:heart: :heart: :heart:\n\nYou can say thanks to the author by donations to these wallets:\n\n- ETH: `0xB71250010e8beC90C5f9ddF408251eBA9dD7320e`\n- BTC:\n  - Legacy: `1N89PRvG1CSsUk9sxKwBwudN6TjTPQ1N8a`\n  - Segwit: `bc1qc0hcyxc000qf0ketv4r44ld7dlgmmu73rtlntw`\n\n---\n\n## Features\n\n* Easy to use.\n* Genarates both client and server certificates.\n* Produces certificates with proper attributes (Key Usage, Extended Key Usage, Authority Key Identifier, Subject Key Identifier and so on).\n* Supports certificates with multiple domain names (SAN, SubjectAlternativeName).\n* Supports wildcard certificates.\n* Generates PKCS12 (.pfx, .p12) as well\n\n## Requirements\n\n* Python 3.4+\n* cryptography 1.6+\n\n## Installation\n\n#### From source\n\nRun this command within source directory:\n\n```sh\npip3 install .\n```\n\n#### From PyPI\n\n```sh\npip3 install quickcerts\n```\n\n#### Snap Store\n\n[![Get it from the Snap Store](https://snapcraft.io/static/images/badges/en/snap-store-black.svg)](https://snapcraft.io/quickcerts)\n\n```sh\nsudo snap install quickcerts\n```\n\n#### Docker\n\nFor deployment with Docker see \"Docker\" section below.\n\n## Usage example\n\n```bash\nquickcerts -D *.example.com example.com -D www.example2.com example2.com mx.example2.com -C \"John Doe\" -C \"Jane Doe\"\n```\n\n```bash\nquickcerts -D localhost 127.0.0.1\n```\n\nThese commands will produce following files in current directory:\n* CA certificate and key\n* Two server certificates having multiple DNS names or IP addresses in SubjectAlternativeName fields and keys for that certificates.\n* Two client certificates for CN=\"John Doe\" and CN=\"Jane Doe\" (and keys for them).\n\nConsequent invokations will reuse created CA.\n\n## Docker\n\nAlso you may run this application with Docker:\n\n```sh\ndocker run -it --rm -v \"$(pwd)/certs:/certs\" \\\n    yarmak/quickcerts -D server -C client1 -C client2 -C client3\n```\n\nIn this example CA and certificates will be created in `./certs` directory.\n\n## Synopsis\n\n```\n$ quickcerts --help\nusage: quickcerts [-h] [-o OUTPUT_DIR] [-k KEY_SIZE] [--kdf-rounds KDF_ROUNDS]\n                  [-D DOMAINS [DOMAINS ...]] [-C CLIENT] [-P PASSWORD]\n\nGenerate RSA certificates signed by common self-signed CA\n\noptions:\n  -h, --help            show this help message and exit\n  -o OUTPUT_DIR, --output-dir OUTPUT_DIR\n                        location of certificates output (default: .)\n  -k KEY_SIZE, --key-size KEY_SIZE\n                        RSA key size used for all certificates (default: 2048)\n  --kdf-rounds KDF_ROUNDS\n                        number of KDF rounds (default: 50000)\n  -D DOMAINS [DOMAINS ...], --domains DOMAINS [DOMAINS ...]\n                        Generate server certificate which covers following\n                        domains or IP addresses delimited by spaces. First one\n                        will be set as CN. Option can be used multiple times.\n                        (default: None)\n  -C CLIENT, --client CLIENT\n                        Generate client certificate with following name.\n                        (default: None)\n  -P PASSWORD, --password PASSWORD\n                        password for newly generated .pfx files (default:\n                        password)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnawoot%2Fquickcerts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnawoot%2Fquickcerts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnawoot%2Fquickcerts/lists"}