Skip to content

Instantly share code, notes, and snippets.

View simonmcmanus's full-sized avatar

Simon McManus simonmcmanus

View GitHub Profile
public class GenerateHash
{
private string key;
private string secret;
public GenerateHash(string key, string secret)
{
this.key = key;
this.secret = secret;
}