{"id":35174279,"url":"https://github.com/skygenesisenterprise/openssl-cli","last_synced_at":"2026-05-21T04:37:10.887Z","repository":{"id":308317322,"uuid":"1032365431","full_name":"skygenesisenterprise/openssl-cli","owner":"skygenesisenterprise","description":"The OpenSSL CLI client","archived":false,"fork":false,"pushed_at":"2025-11-24T22:08:27.000Z","size":1856,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-05T20:39:54.315Z","etag":null,"topics":["certificates","cli","go","open-project","openssl"],"latest_commit_sha":null,"homepage":"https://ssl.skygenesisenterprise.com","language":"Go","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/skygenesisenterprise.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-05T07:48:43.000Z","updated_at":"2025-08-05T08:27:40.000Z","dependencies_parsed_at":"2025-08-05T10:37:48.021Z","dependency_job_id":null,"html_url":"https://github.com/skygenesisenterprise/openssl-cli","commit_stats":null,"previous_names":["skygenesisenterprise/openssl-cli"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/skygenesisenterprise/openssl-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skygenesisenterprise%2Fopenssl-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skygenesisenterprise%2Fopenssl-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skygenesisenterprise%2Fopenssl-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skygenesisenterprise%2Fopenssl-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skygenesisenterprise","download_url":"https://codeload.github.com/skygenesisenterprise/openssl-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skygenesisenterprise%2Fopenssl-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33288912,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["certificates","cli","go","open-project","openssl"],"created_at":"2025-12-28T21:51:21.207Z","updated_at":"2026-05-21T04:37:10.869Z","avatar_url":"https://github.com/skygenesisenterprise.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Enterprise OpenSSL CA CLI\n\n**Repository:** `openssl-cli`  \n**Maintainer:** Sky Genesis Enterprise  \n**Project:** Enterprise OpenSSL Certification Authority\n\n---\n\n## 🌐 Overview\n\nThe **Enterprise OpenSSL Certification Authority CLI** (`openssl-cli`) is the official command-line interface designed to interact with the Enterprise OpenSSL Certification Authority server.\n\nThis CLI tool provides developers, system administrators, and automation pipelines with a secure, reliable, and user-friendly interface to generate keys, request certificates, renew, revoke, and manage certificate lifecycles in a consistent manner across all Sky Genesis Enterprise deployments.\n\n\u003e ⚠️ This project is an internal and open-source initiative by Sky Genesis Enterprise and is not affiliated with the official OpenSSL Project.\n\n---\n\n## 🛠️ Features\n\n- 🔐 Generate private keys and Certificate Signing Requests (CSRs)  \n- 🏷️ Request, renew, and revoke X.509 certificates from the Enterprise CA  \n- 📜 Manage certificate profiles and policies locally  \n- 🔄 Support for automated certificate renewal  \n- 🌍 Interact securely with the CA server via REST APIs  \n- 🧪 Output formats: PEM, DER, JSON  \n- ⚙️ Fully scriptable CLI commands for DevOps workflows  \n- 🔒 Built-in verification of trusted installation source  \n- 📦 Cross-platform support: Linux, macOS, Windows (planned)  \n\n---\n\n## ⚡ Installation\n\nThe recommended installation method is via the official Sky Genesis Enterprise source:\n\n```bash\nwget -qO- https://ssl.skygenesisenterprise.com/install-cli.sh | bash\n````\n\nThis script downloads, verifies, and installs the `openssl-cli` binary with secure defaults.\n\n---\n\n## 🚀 Quickstart\n\nInitialize a new key and generate a CSR:\n\n```bash\nopenssl gen-key --name \"my-service-key\" --out ./keys/\nopenssl gen-csr --key ./keys/my-service-key.pem --cn \"service.example.com\" --out ./csr/service.csr\n```\n\nRequest a certificate from the Enterprise CA:\n\n```bash\nopenssl request-cert --csr ./csr/service.csr --profile tls-server --out ./certs/service.crt\n```\n\nRenew an existing certificate:\n\n```bash\nopenssl renew-cert --cert ./certs/service.crt --out ./certs/service-renewed.crt\n```\n\nRevoke a certificate by serial number:\n\n```bash\nopenssl revoke-cert --serial 0A1B2C3D --reason \"key-compromise\"\n```\n\n---\n\n## 🧑‍💻 Development\n\nThis project is implemented in Go and is designed to be modular and extensible.\n\nContributions and feedback are welcome! Please follow the contributing guidelines in the `CONTRIBUTING.md` file.\n\n---\n\n## 🔐 Security\n\n* All CLI releases are signed and checksummed\n* Enforces secure transport (TLS) when communicating with CA servers\n* Validates server certificates and fingerprints\n* Supports integration with Hardware Security Modules (HSM) via PKCS#11 (planned)\n\n---\n\n## 📫 Contact \u0026 Support\n\nFor questions, support, or commercial inquiries:\n\n* Website: [https://skygenesisenterprise.com](https://skygenesisenterprise.com)\n* Email: [security@skygenesisenterprise.com](mailto:security@skygenesisenterprise.com)\n* GitHub: [Enterprise Github Organisation](https://github.com/skygenesisenterprise)\n\n---\n\n## 📝 License\n\nThis project is licensed under the **MIT License**.\n\n© Sky Genesis Enterprise. All rights reserved.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskygenesisenterprise%2Fopenssl-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskygenesisenterprise%2Fopenssl-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskygenesisenterprise%2Fopenssl-cli/lists"}