(wanted, got interface{})
| 992 | } |
| 993 | |
| 994 | func unexpectedMessageError(wanted, got interface{}) error { |
| 995 | return fmt.Errorf("tls: received unexpected handshake message of type %T when waiting for %T", got, wanted) |
| 996 | } |
| 997 | |
| 998 | func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool { |
| 999 | for _, s := range supportedSignatureAlgorithms { |
no outgoing calls
no test coverage detected
searching dependent graphs…