I'want to use SHA 256 encryption on windows phone 8.1 c# xaml. But i am getting the following error: Cannot find type System.Security.Cryptography.HashAlgorithm in module mscorlib.dll
And indeed System.Security.Cryptography is not available on Windows Phone (or windows 8 store). Windows.Security.Cryptography however is available, but I couldn't find this class there as well.
What i need to use SHA 256 encryption ? Is thereany dll for that ?
Thanks
It's a bit more difficult if you're doing Universal App. But to get you started
You have to create a HashAlgorithmProvider and provided it with the HashAlgorithm you want to use
see
HashAlgorithmNames.
namespace for all supported HashesThen you create a
CryptographicHash
from the above.Then you add in bytes into the
CryptographicHash
using.Append(data)
Then you compute the hash.
Then you can encode it to a hex string if you like.
Shameless Screenshot of my Hashing App :)
Click Here for Fullsize Image