()
| 61 | } |
| 62 | |
| 63 | func (e *echConfigErr) Error() string { |
| 64 | if e.field == "" { |
| 65 | return "tls: malformed ECHConfig" |
| 66 | } |
| 67 | return fmt.Sprintf("tls: malformed ECHConfig, invalid %s field", e.field) |
| 68 | } |
| 69 | |
| 70 | func parseECHConfig(enc []byte) (skip bool, ec EchConfig, err error) { |
| 71 | s := cryptobyte.String(enc) |
nothing calls this directly
no outgoing calls
no test coverage detected