# certgen **Repository Path**: cuigray/certgen ## Basic Information - **Project Name**: certgen - **Description**: minio 出品的小工具 - 本地证书生成工具。真TM的简单。 - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-14 - **Last Updated**: 2025-01-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # certgen `certgen` is a simple tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries. ## Install
Binary Releases | OS | ARCH | Binary | |:--------:|:-------:|:----------------------------------------------------------------------------------------------------:| | Linux | amd64 | [linux-amd64](https://github.com/minio/certgen/releases/latest/download/certgen-linux-amd64) | | Linux | arm64 | [linux-arm64](https://github.com/minio/certgen/releases/latest/download/certgen-linux-arm64) | | Linux | ppc64le | [linux-ppc64le](https://github.com/minio/certgen/releases/latest/download/certgen-linux-ppc64le) | | Linux | s390x | [linux-s390x](https://github.com/minio/certgen/releases/latest/download/certgen-linux-s390x) | | Apple M1 | arm64 | [darwin-arm64](https://github.com/minio/certgen/releases/latest/download/certgen-darwin-arm64) | | Apple | amd64 | [darwin-amd64](https://github.com/minio/certgen/releases/latest/download/certgen-darwin-amd64) | | Windows | amd64 | [windows-amd64](https://github.com/minio/certgen/releases/latest/download/certgen-windows-amd64.exe) | | Windows | arm64 | [windows-amd64](https://github.com/minio/certgen/releases/latest/download/certgen-windows-arm64.exe) | | FreeBSD | amd64 | [freebsd-amd64](https://github.com/minio/certgen/releases/latest/download/certgen-freebsd-amd64) | | FreeBSD | arm64 | [freebsd-amd64](https://github.com/minio/certgen/releases/latest/download/certgen-freebsd-arm64) | Download [`certgen`](https://github.com/minio/certgen/releases/latest) for your specific operating system and platform. ## Example (server) ```sh certgen -host "127.0.0.1,localhost" Created a new certificate 'public.crt', 'private.key' valid for the following names 📜 - "127.0.0.1" - "localhost" ``` ## Example (client) ```sh certgen -client -host "localhost" Created a new certificate 'client.crt', 'client.key' valid for the following names 📜 - "localhost" ```