(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme)
| 1750 | } |
| 1751 | |
| 1752 | func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool { |
| 1753 | return slices.Contains(supportedSignatureAlgorithms, sigAlg) |
| 1754 | } |
| 1755 | |
| 1756 | // CertificateVerificationError is returned when certificate verification fails during the handshake. |
| 1757 | type CertificateVerificationError struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…