Minor updates

This commit is contained in:
世界 2025-02-01 19:42:53 +08:00
parent 9b4c11ba95
commit 7f79458b4f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 13 additions and 6 deletions

View file

@ -30,7 +30,7 @@ func init() {
}
func generateTLSKeyPair(serverName string) error {
privateKeyPem, publicKeyPem, err := tls.GenerateKeyPair(time.Now, serverName, time.Now().AddDate(0, flagGenerateTLSKeyPairMonths, 0))
privateKeyPem, publicKeyPem, err := tls.GenerateCertificate(nil, nil, time.Now, serverName, time.Now().AddDate(0, flagGenerateTLSKeyPairMonths, 0))
if err != nil {
return err
}