Created
November 10, 2015 20:18
-
-
Save portal7/fb81fd4a9689f57092d3 to your computer and use it in GitHub Desktop.
HMACSHA256 From http://ideone.com/JdpeL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
using System.Security.Cryptography; | |
public class Program | |
{ | |
private const string key = "key"; | |
private const string message = "message"; | |
private static readonly Encoding encoding = Encoding.UTF8; | |
static void Main(string[] args) | |
{ | |
var keyByte = encoding.GetBytes(key); | |
using (var hmacsha256 = new HMACSHA256(keyByte)) | |
{ | |
hmacsha256.ComputeHash(encoding.GetBytes(message)); | |
Console.WriteLine("Result: {0}", ByteToString(hmacsha256.Hash)); | |
} | |
} | |
static string ByteToString(byte[] buff) | |
{ | |
string sbinary = ""; | |
for (int i = 0; i < buff.Length; i++) | |
sbinary += buff[i].ToString("X2"); /* hex format */ | |
return sbinary; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment