I am looking for a simple solution to generate a pair of keys (public/private) encrypt/hash a string and then be able to check if the string was encrypted/hashed using the public key.
Is there a simple solution for this (CryptoAPI)?
I am looking for a starting point.
You can have a look at Turbopower Lockbox which is open sourced a while ago. I think the
RSA sign & verifyis what you need.