[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Encryption - HMAC

  • Thread starter Thread starter goo
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top