The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
462 B
18 lines
462 B
using System.Text; |
|
|
|
namespace Teknik.Utilities.Cryptography |
|
{ |
|
public class SHA384 |
|
{ |
|
public static byte[] Hash(string key, string value) |
|
{ |
|
byte[] keyBytes = Encoding.UTF8.GetBytes(key); |
|
byte[] data = Encoding.UTF8.GetBytes(value); |
|
|
|
var cipher = new System.Security.Cryptography.HMACSHA384(keyBytes); |
|
byte[] result = cipher.ComputeHash(data); |
|
|
|
return result; |
|
} |
|
} |
|
}
|
|
|