I would like to be able to verify an OpenSSL-generated DSA signature using the Microsoft CryptoAPI.
Consider that you have the following inputs:
- an existing DSA public key:
- the data to be verified
- a binary signature
The signature has already been converted from Base64 into a series of 48 bytes.
Without good knowledge of the CryptoAPI, this is much more difficult that it should be.
The major stumbling blocks were:
Here's a rough sample of how I finally solved the problem: