Skip to content

Instantly share code, notes, and snippets.

@lnmunhoz
Created June 30, 2015 14:00
Show Gist options
  • Save lnmunhoz/df93858e0513a0b4280e to your computer and use it in GitHub Desktop.
Save lnmunhoz/df93858e0513a0b4280e to your computer and use it in GitHub Desktop.
Convert Hash of Bytes to String
public string ByteArrayToString(byte[] ba)
{
StringBuilder hex = new StringBuilder(ba.Length * 2);
foreach (byte b in ba) hex.AppendFormat("{0:x2}", b);
return hex.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment