There are plenty of examples written in C on how to verify a digital signature on a message but my use case requires me to provide only the message hash.
So is there an alternative to EVP_DigestVerifyUpdate(mdctx, msg, strlen(msg));
where I could directly provide a hash?
Is this what you are looking for?