Skip to content

Commit

Permalink
misc: fix usage string
Browse files Browse the repository at this point in the history
Signed-off-by: He Xian <[email protected]>
  • Loading branch information
hexian000 committed Oct 14, 2024
1 parent 6e16c52 commit 876ed46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v3/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func parseFlags(f *tlswrapper.AppFlags) {
flag.StringVar(&f.GenCerts, "gencerts", "", "comma-separated name list, generate key pairs as <name>-cert.pem, <name>-key.pem")
flag.StringVar(&f.Sign, "sign", "", "sign the certificate with <name>-cert.pem, <name>-key.pem")
flag.StringVar(&f.KeyType, "keytype", "rsa", "one of rsa, ecdsa, ed25519")
flag.IntVar(&f.KeySize, "keysize", 0, "specify the number of bits for the private key")
flag.IntVar(&f.KeySize, "keysize", 0, "specifies the size of the private key, depending on the key type")
flag.Parse()
}

Expand Down

0 comments on commit 876ed46

Please sign in to comment.