The types have changed in the PR for the wolfSSL_get_sigalg_info()
function, let's update them.
Must be backported in 2.9.
(cherry picked from commit
dbe9cea35b7a43a4907fa726e7a8afc31a6fbee3)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
has_rsa_sig = 0;
}
for (idx = 0; idx < hashSigAlgoSz; idx += 2) {
- enum wc_HashType hashAlgo;
- enum Key_Sum sigAlgo;
+ int hashAlgo;
+ int sigAlgo;
wolfSSL_get_sigalg_info(hashSigAlgo[idx+0], hashSigAlgo[idx+1], &hashAlgo, &sigAlgo);