G
goo
Guest
Anyone? I need to do this in openedge: this.hmac2.Text = ByteToString(hashmessage); } public static string ByteToString(byte [] buff) { string sbinary=""; for (int i=0;i<buff.Length;i++) { sbinary+=buff.ToString("X2"); // hex format } return(sbinary); } Anyone having a hint?
Continue reading...
Continue reading...