This package is a golang command line tool implementation of self-signing certificates.
Also, we expected to link third party CA certificates to generate certificates in the future.
| Type | Version |
|---|---|
| OS | ubuntu 22.04.5 |
| Golang | go1.22.5 linux/amd64 |
Note
If the target file (certificate, csr, private key) is existed, the function will not create it and directly return an error, cert/csr/private key already exists.
-
Prepare the destination directory for the private key, certificate, and CSR. This step is required for all the following steps.
-
Modify the
cfg.ymlfile to set the appropriate values(you can use thedefaultCfg.ymlfile as your template). -
Import the
certgopackage in your code.import "github.com/Alonza0314/cert-go"
-
For create private key, you need to specify the path of the destination file. Then, use this function:
CreatePrivateKey(keyPath string) (*ecdsa.PrivateKey, error)
The return value is the private key in
*ecdsa.PrivateKeytype. -
For create csr, you need to specify the certificate structure. You can use
ReadYamlFileToStructfunction to read the configuration file and convert it to the certificate structure.util.ReadYamlFileToStruct(yamlPath string, v interface{}) error
Then, use this function:
CreateCsr(cfg model.Certificate) (*x509.CertificateRequest, error)
The return value is the csr in
*x509.CertificateRequesttype.NOTICE:
- If the private key is not existed, the function will automatically create one in default.
-
For sign certificate, you need to specify the yaml file path of the CA configuration. Then, use these functions for different types of certificates:
SignRootCertificate(yamlPath string) (*x509.Certificate, error) SignIntermediateCertificate(yamlPath string) (*x509.Certificate, error) SignServerCertificate(yamlPath string) (*x509.Certificate, error) SignClientCertificate(yamlPath string) (*x509.Certificate, error)
The return value is the signed certificate in
*x509.Certificatetype.NOTICE:
- If the private key is not existed, the function will automatically create one in default.
- If the csr is not existed, the function will automatically create one in default.
-
In the end, it is expected to see the private key, certificate, and csr in the destination directory.
go test ./... -v-
linux-amd64
make linux_amd64
-
mac-arm64
make mac_arm64
Then, you can find the executable file in the build directory.
You can download the binary file from the release page and execute it directly.
Go to the release page to download the binary file