<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic MD5 how-to in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/21725#M11812</link>
    <description>&lt;DIV class="lia-message-body"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;I have been reading the documentation about MD5 implementation but I am confused.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if I enter, say "apple" (not that I would, but that's a readable example) in my MD5 settings under my account setting, do I just use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; require_once 'anet_php_sdk/AuthorizeNet.php'; // The SDK&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $url = "http://mylink&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $api_login_id = 'sdfsdfdfsdfs';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $transaction_key = 'asdadfsds';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $md5_setting = 'apple'; // Your MD5 Setting&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $amount = "5.99";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AuthorizeNetDPM::directPostDemo($url, $api_login_id, $transaction_key, $amount, $md5_setting);﻿&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-rating-metoo lia-component-body"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Tue, 17 Jan 2012 10:00:19 GMT</pubDate>
    <dc:creator>tholomacro</dc:creator>
    <dc:date>2012-01-17T10:00:19Z</dc:date>
    <item>
      <title>MD5 how-to</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/21725#M11812</link>
      <description>&lt;DIV class="lia-message-body"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;I have been reading the documentation about MD5 implementation but I am confused.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if I enter, say "apple" (not that I would, but that's a readable example) in my MD5 settings under my account setting, do I just use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; require_once 'anet_php_sdk/AuthorizeNet.php'; // The SDK&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $url = "http://mylink&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $api_login_id = 'sdfsdfdfsdfs';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $transaction_key = 'asdadfsds';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $md5_setting = 'apple'; // Your MD5 Setting&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $amount = "5.99";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AuthorizeNetDPM::directPostDemo($url, $api_login_id, $transaction_key, $amount, $md5_setting);﻿&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="lia-rating-metoo lia-component-body"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Jan 2012 10:00:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/21725#M11812</guid>
      <dc:creator>tholomacro</dc:creator>
      <dc:date>2012-01-17T10:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: MD5 how-to</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/21731#M11815</link>
      <description>&lt;P&gt;That should work.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2012 14:53:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/21731#M11815</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-01-17T14:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: MD5 how-to</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/26794#M14212</link>
      <description>&lt;P&gt;I should point out that you should be using the transaction ID, not the transaction key. The idea is to check the MD5 hash for a given transaction, which means you'd want to specify which transaction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd suggest the following:&lt;BR /&gt;&lt;BR /&gt;require_once 'anet_php_sdk/AuthorizeNet.php'; // The SDK &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;$url = 'http://mylink';&lt;/P&gt;
&lt;P&gt;$api_login_id = 'sdfsdfdfsdfs'; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;$transaction_id = '123456789'; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;$md5_setting = 'apple'; // Your MD5 Setting &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;$amount = "5.99"; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AuthorizeNetDPM::directPostDemo($url, $api_login_id, $transaction_id, $amount, $md5_setting);&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2012 16:55:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/MD5-how-to/m-p/26794#M14212</guid>
      <dc:creator>Lilith</dc:creator>
      <dc:date>2012-05-29T16:55:50Z</dc:date>
    </item>
  </channel>
</rss>

