cancel
Showing results for 
Search instead for 
Did you mean: 

How to get MD5 Hash in RelayReponse page for validating

Hi Experts,

 

I am new comer in Authorize.net Comminity so I have a question that I want to get the MD5 Hash for validating (Using the MD5 Hash feature). My project is written by C# ASP.NET (dont use MVC framework at all) I try to find in documents but no luck because it is written for MVC project. I am using DPM method to test

 

Any help is very appriciated

 

Thank you all in advance,

Binh Duong

prophet_quest
Member
1 ACCEPTED SOLUTION

Accepted Solutions

Methods Validate() in the SIMResponse class in their SDKs.

Download the source if you want to see how it work.

View solution in original post

RaynorC1emen7
Expert
2 REPLIES 2

Methods Validate() in the SIMResponse class in their SDKs.

Download the source if you want to see how it work.

RaynorC1emen7
Expert

Thanks Raynor for your answer, I found that code snippet below

 

var response = new AuthorizeNet.SIMResponse(this.Request.Form);
var isValid = response.Validate("YOUR_MERCHANT_HASH_CODE", "YOUR_APILOGIN");

 

but I have not tested yet, anyway thank you so much