(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme)
| 1467 | } |
| 1468 | |
| 1469 | func isSupportedSignatureAlgorithm(sigAlg SignatureScheme, supportedSignatureAlgorithms []SignatureScheme) bool { |
| 1470 | for _, s := range supportedSignatureAlgorithms { |
| 1471 | if s == sigAlg { |
| 1472 | return true |
| 1473 | } |
| 1474 | } |
| 1475 | return false |
| 1476 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…