go:generate stringer -type=SignatureScheme,CurveID,ClientAuthType -output=common_string.go SignatureScheme identifies a signature algorithm supported by TLS. See RFC 8446, Section 4.2.3.
| 367 | // SignatureScheme identifies a signature algorithm supported by TLS. See |
| 368 | // RFC 8446, Section 4.2.3. |
| 369 | type SignatureScheme uint16 |
| 370 | |
| 371 | const ( |
| 372 | // RSASSA-PKCS1-v1_5 algorithms. |
no outgoing calls
no test coverage detected