Skip to content

Commit 8e77798

Browse files
committed
flags: Correct 'tls-cipher-suite' flag description
The expected values are Go's crypto/tls cipher suites constant names. Signed-off-by: Or Mergi <ormergi@redhat.com>
1 parent 84e2b94 commit 8e77798

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ func main() {
8888
"Supported values are tls package constants names (e.g. VersionTLS13), please see "+
8989
"https://pkg.go.dev/crypto/tls#pkg-constants")
9090
flag.StringVar(&tlsCipherSuitesRaw, "tls-cipher-suites", "",
91-
"Comma-separated list of TLS cipher suite names (OpenSSL names. E.g: TLS_AES_128_GCM_SHA256)."+
91+
"Comma-separated list of TLS cipher suite names."+
92+
"Supported values are tls package constants names (e.g. TLS_AES_128_GCM_SHA256), please see "+
93+
"https://pkg.go.dev/crypto/tls#pkg-constants"+
9294
"When 'min-tls-version' is 'VersionTLS13', cipher suites are selected by the runtime.")
9395
flag.StringVar(&tlsCurvePreferencesRaw, "tls-curve-preferences", "",
9496
"Comma-separated list of TLS curve preference names. "+

0 commit comments

Comments
 (0)