I know that most uses of cryptographic signatures are with public/private keys, but I need to sign information using a pre-shared key. I know I can just encrypt the data, but I prefer signing it..
Is it possible in C#?
I know that most uses of cryptographic signatures are with public/private keys, but I need to sign information using a pre-shared key. I know I can just encrypt the data, but I prefer signing it..
Is it possible in C#?
there are plenty of schemes (involving HMAC) to perform message signature with symmetric (pre-shared) key material.
possible duplicate: