You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
nyghtrocker
changed the title
do you have C# example? how to digital-signatures in C# what do you think about this ?
do you have C# example? how to verify digital-signatures in C# what do you think about this ?
Jul 23, 2020
`public bool VerifySignature(string encodedPublicKey, string signature, string payload)
{
byte[] decodedPublicKey = Convert.FromBase64String(encodedPublicKey);
var decodedSignature = Convert.FromBase64String(signature);
var decodedPayload = Convert.FromBase64String(payload);
The text was updated successfully, but these errors were encountered: