| 39 | } |
| 40 | |
| 41 | type EchConfig struct { |
| 42 | raw []byte |
| 43 | |
| 44 | Version uint16 |
| 45 | Length uint16 |
| 46 | |
| 47 | ConfigID uint8 |
| 48 | KemID uint16 |
| 49 | PublicKey []byte |
| 50 | SymmetricCipherSuite []EchCipher |
| 51 | |
| 52 | MaxNameLength uint8 |
| 53 | PublicName []byte |
| 54 | Extensions []echExtension |
| 55 | } |
| 56 | |
| 57 | var errMalformedECHConfigList = errors.New("tls: malformed ECHConfigList") |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected