Posted September 10, 201114 yr Hi there,I was trying to implement a simple RSA signature verification scheme.Fortunately, Microsoft gives an example of using the crypto apis, which does precisely that: />http://msdn.microsoft.com/en-us/library/aa382371%28v=vs.85%29.aspxThis looks good, but doesnt actually work.The second api call, CryptGetUserKey() fails. GetLastError() returns "0x8009000d", which is not defined to my knowledge.am i missing something...?d.
September 10, 201114 yr The error code is:NTE_NO_KEYThe key requested by the dwKeySpec parameter does not exist.It simply means there is no key in your container. Take a look at this sample:/>http://msdn.microsoft.com/en-us/library/aa382043%28v=vs.85%29.aspx
September 12, 201114 yr Author thanks. i was using a handle to the wrong provider... :S where did you get the definition of the error from, though? d.
Create an account or sign in to comment