(wanted, got any)
| 1463 | } |
| 1464 | |
| 1465 | func unexpectedMessageError(wanted, got any) error { |
| 1466 | return fmt.Errorf("tls: received unexpected handshake message of type %T when waiting for %T", got, wanted) |
| 1467 | } |
| 1468 | |
| 1469 | func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool { |
| 1470 | for _, s := range supportedSignatureAlgorithms { |
no outgoing calls
no test coverage detected
searching dependent graphs…