<?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 Re: TLS 1.2 Migration in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63420#M37548</link>
    <description>&lt;P&gt;Tôi cũng bị tình trạng tương tự thế này, vui lòng giúp tôi:&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jun 2018 12:47:30 GMT</pubDate>
    <dc:creator>duydiem6868</dc:creator>
    <dc:date>2018-06-18T12:47:30Z</dc:date>
    <item>
      <title>TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61565#M35994</link>
      <description>&lt;P&gt;&amp;nbsp;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I received an email about "Important TLS 1.0 Disablement ".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1- We are using Authorize.Net on our Joomla / PHP website.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Our web site is hosted on the Windows Server 2012 R2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To verify my changes I setup sandbox and test server but sandbox doesn’t response to any test transaction.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What updates should be done from our side to make the website work with Authorize.net?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thaks.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 15:26:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61565#M35994</guid>
      <dc:creator>msamama2018</dc:creator>
      <dc:date>2018-02-08T15:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61568#M35997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23323"&gt;@msamama2018&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please have a look at our TLS 1.2 FAQs&amp;nbsp;&amp;nbsp;&lt;A href="https://support.authorize.net/authkb/index?page=content&amp;amp;id=A1623" target="_blank"&gt;https://support.authorize.net/authkb/index?page=content&amp;amp;id=A1623&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/News-and-Announcements/Temporary-Disablement-of-TLS-1-0-1-1-on-Production-February-8/m-p/61351#M201&amp;nbsp;" target="_blank"&gt;https://community.developer.authorize.net/t5/News-and-Announcements/Temporary-Disablement-of-TLS-1-0-1-1-on-Production-February-8/m-p/61351#M201&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reach out to our CS teams at&amp;nbsp;&lt;SPAN&gt;1.877.447.3938&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;if need more information .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2018 19:23:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61568#M35997</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-02-08T19:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61582#M36009</link>
      <description>&lt;P&gt;As a start you could create a simple function to check the status of your server's TLS:&lt;/P&gt;&lt;PRE&gt;using System;
using System.Net;
using System.IO;

namespace howsMySSL
{
    public partial class Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
            var response = WebRequest.Create("https://www.howsmyssl.com/a/check").GetResponse();
            var responseData = new StreamReader(response.GetResponseStream()).ReadToEnd();
            Response.Write(responseData);

        }
    }
}&lt;/PRE&gt;&lt;P&gt;Or with PHP :&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php 
$ch = curl_init('https://www.howsmyssl.com/a/check');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);

$json = json_decode($data);
echo $json-&amp;gt;tls_version;&lt;/PRE&gt;&lt;P&gt;The JSON reponse should show something like the following:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{"given_cipher_suites":["TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384","TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384","TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256","TLS_DHE_RSA_WITH_AES_256_GCM_SHA384","TLS_DHE_RSA_WITH_AES_128_GCM_SHA256","TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384","TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256","TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384","TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256","TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA","TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA","TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA","TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA","TLS_RSA_WITH_AES_256_GCM_SHA384","TLS_RSA_WITH_AES_128_GCM_SHA256","TLS_RSA_WITH_AES_256_CBC_SHA256","TLS_RSA_WITH_AES_128_CBC_SHA256","TLS_RSA_WITH_AES_256_CBC_SHA","TLS_RSA_WITH_AES_128_CBC_SHA","TLS_RSA_WITH_3DES_EDE_CBC_SHA"],"ephemeral_keys_supported":true,"session_ticket_supported":true,"tls_compression_supported":false,"unknown_cipher_suite_supported":false,"beast_vuln":false,"able_to_detect_n_minus_one_splitting":false,"insecure_cipher_suites":{},"tls_version":"TLS 1.2","rating":"Probably Okay"}&lt;/PRE&gt;&lt;P&gt;If the tls_version is less than TLS 1.2, then some server configuration needs to be addressed(with Windows 2102, this shouldn't be the case), else you can then check your cURL / OpenSSL / NSS version with the following:&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php    
$curl_info = curl_version();
echo $curl_info['ssl_version'];&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;OpenSSL includes support for TLS v1.2 in OpenSSL 1.0.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;NSS included support for TLS v1.2 in 3.15&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2018 12:22:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61582#M36009</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-02-09T12:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61622#M36045</link>
      <description>&lt;P&gt;&lt;SPAN&gt;We have updated our server for TLS 1.2... The changes were tested and working successfully as applications on this machine are calling UPS API, who have already enforced TLS 1.2... However, we are still worried as we are using an old DLLs from Authorize.Net for Asp.Net framework 2.0 named ETransact.dll (version 1.0.2307)... We doubt&amp;nbsp;that DLL may have issues in making TLS 1.2 connection... &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The DLL allows switching between test/live modes...&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I performed a payment in the test mode, which was successful... But I am not sure, when I am making a payment in the test mode, then I am hitting the sandbox URL to test TLS 1.2, or I need to hit some other endpoint...&amp;nbsp;And, if I need to hit some other endpoint, then what choices do I have... I can not change the service endpoint within DLL...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Arvind&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 12:11:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61622#M36045</guid>
      <dc:creator>atripathi</dc:creator>
      <dc:date>2018-02-12T12:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61623#M36046</link>
      <description>&lt;P&gt;You should know completely the functionality of any DLLs, that your application is using, especially one as old at that. One way is decompile the DLL and see exactly what is happening and if need be, rewrite it to suite your purposes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you must use the SDK, it would be recommended to upgrade to the newest version.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 13:11:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61623#M36046</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-02-12T13:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61668#M36082</link>
      <description>&lt;P&gt;I decompiled the DLL, and found that it is hitting following URL in Live mode:&lt;/P&gt;&lt;P&gt;&lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and the following URL in Test mode:&lt;/P&gt;&lt;P&gt;&lt;A href="https://certification.authorize.net/gateway/transact.dll" target="_blank"&gt;https://certification.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The sandbox URL provided by Authorize.Net to test TLS 1.2 is:&lt;/P&gt;&lt;P&gt;&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can not make changes to the dll to hit the&amp;nbsp;&lt;SPAN&gt;sandbox URL provided by Authorize.Net to test TLS 1.2... What option do I have for performing the test?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Arvind&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 08:49:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61668#M36082</guid>
      <dc:creator>atripathi</dc:creator>
      <dc:date>2018-02-13T08:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61669#M36083</link>
      <description>&lt;P&gt;Build your own DLL that calls the correct API endpoint or use the newest version of the SDK.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 08:54:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61669#M36083</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-02-13T08:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61670#M36084</link>
      <description>&lt;P&gt;What is the recommended way to post to API endpoint... Is it essential to build a DLL... Can we write the code, which directly performs the post to API endpoint... Are there any guidelines available?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 09:47:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61670#M36084</guid>
      <dc:creator>atripathi</dc:creator>
      <dc:date>2018-02-13T09:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61671#M36085</link>
      <description>&lt;P&gt;Yes, you can write the code that posts directly to the endpoint, in many cases that is the better solution.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 10:12:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61671#M36085</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-02-13T10:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61672#M36086</link>
      <description>&lt;P&gt;Are there any guidelines available to perform post directly from the code... And, is there a sample code available in asp and asp.net to post directly...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arvind&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 12:01:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61672#M36086</guid>
      <dc:creator>atripathi</dc:creator>
      <dc:date>2018-02-13T12:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61673#M36087</link>
      <description>&lt;P&gt;Which&amp;nbsp;type of transaction&amp;nbsp;are you looking to make from your code?&amp;nbsp;Basic Charge a Credit Card / createTransactionRequest, Accept Hosted or something else?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 12:59:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61673#M36087</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-02-13T12:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61690#M36102</link>
      <description>&lt;P&gt;We perform credit card transactions...&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2018 04:45:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61690#M36102</guid>
      <dc:creator>atripathi</dc:creator>
      <dc:date>2018-02-14T04:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61938#M36336</link>
      <description>&lt;P&gt;Hello Team&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me to fix the issue of&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;" could not create ssl/TLS Secured channel" i am using windows 2012 RS server&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried with nartec , Cipher GUI, but after restarting the same issue, user could not make the payment&lt;/P&gt;&lt;P&gt;kindly help me&lt;/P&gt;</description>
      <pubDate>Thu, 01 Mar 2018 19:05:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61938#M36336</guid>
      <dc:creator>trucktax</dc:creator>
      <dc:date>2018-03-01T19:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61979#M36371</link>
      <description>&lt;P&gt;What is the code you are using to make your web request?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Mar 2018 12:59:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61979#M36371</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-03-04T12:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61981#M36372</link>
      <description>&lt;P&gt;tôi cũng gặp tình trạng này :(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 03:48:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/61981#M36372</guid>
      <dc:creator>khangphudat</dc:creator>
      <dc:date>2018-03-05T03:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/62495#M36802</link>
      <description>&lt;P&gt;me too!&lt;/P&gt;&lt;P&gt;&lt;A href="http://nhansusaigon.com" target="_self"&gt;đơn vị tổ chức sự kiện&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 07:35:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/62495#M36802</guid>
      <dc:creator>saigonlight</dc:creator>
      <dc:date>2018-04-04T07:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63419#M37547</link>
      <description>&lt;P&gt;I use Wordpress but&amp;nbsp;&lt;SPAN&gt;I received an email about "Important TLS 1.0 Disablement ".&lt;/SPAN&gt;&lt;BR /&gt;Please help me.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 06:44:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63419#M37547</guid>
      <dc:creator>duydiem6868</dc:creator>
      <dc:date>2018-06-18T06:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63420#M37548</link>
      <description>&lt;P&gt;Tôi cũng bị tình trạng tương tự thế này, vui lòng giúp tôi:&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 12:47:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63420#M37548</guid>
      <dc:creator>duydiem6868</dc:creator>
      <dc:date>2018-06-18T12:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: TLS 1.2 Migration</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63422#M37550</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@&lt;A href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/24907" target="_self"&gt;&lt;SPAN class=""&gt;duydiem6868&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;The API supports TLS 1.2 only, and if your integration is working fine now you don't need to worry about anything. You already have TLS 1.2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Translated version :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;API chỉ hỗ trợ TLS 1.2 và nếu tích hợp của bạn hoạt động tốt, bạn không cần phải lo lắng về bất kỳ điều gì. Bạn đã có TLS 1.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this Helps !&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 09:21:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/TLS-1-2-Migration/m-p/63422#M37550</guid>
      <dc:creator>kikmak42</dc:creator>
      <dc:date>2018-06-18T09:21:59Z</dc:date>
    </item>
  </channel>
</rss>

