CurveID is the type of a TLS identifier for an elliptic curve. See https://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-8. In TLS 1.3, this type is called NamedGroup, but at this time this library only supports Elliptic Curve based groups. See RFC 8446, Section 4.2.7.
| 113 | // In TLS 1.3, this type is called NamedGroup, but at this time this library |
| 114 | // only supports Elliptic Curve based groups. See RFC 8446, Section 4.2.7. |
| 115 | type CurveID uint16 |
| 116 | |
| 117 | const ( |
| 118 | CurveP256 CurveID = 23 |
no outgoing calls
no test coverage detected