Documentation ¶
Overview ¶
* Example: https://golang.org/src/crypto/tls/generate_cert.go * * Create time: 2020/08/28 * Update time: 2021/09/16
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Info ¶
type Info struct { Hostname string /* 主机名,默认为本机主机名 */ ValidFrom time.Time /* 创建日期,默认为当前时间 */ ValidFor int /* 有效期(天),默认为365天 */ IsCA bool /* 这个证书是否应该是它自己的证书颁发机构,默认为否 */ RsaBits int /* RSA私钥长度,默认为2048 */ EcdsaCurve string /* 用于生成密钥的 ECDSA 曲线。 有效值为 P224、P256(推荐)、P384、P521,默认为无 */ Ed25519Key bool /* 生成Ed25519私钥,默认为否 */ }
Click to show internal directories.
Click to hide internal directories.