go:generate stringer -linecomment -type=SignatureScheme,CurveID,ClientAuthType -output=common_string.go SignatureScheme identifies a signature algorithm supported by TLS. See RFC 8446, Section 4.2.3.
| 387 | // SignatureScheme identifies a signature algorithm supported by TLS. See |
| 388 | // RFC 8446, Section 4.2.3. |
| 389 | type SignatureScheme uint16 |
| 390 | |
| 391 | const ( |
| 392 | // RSASSA-PKCS1-v1_5 algorithms. |
no outgoing calls
no test coverage detected