nopSolutions / braintree-plugin-for-nopcommerce

nopCommerce plugin for Braintree (payments)
https://www.nopcommerce.com/
GNU General Public License v3.0
3 stars 10 forks source link

Braintree TLSv1.2 supported SDKs #2

Closed VedranBrnjetic closed 5 years ago

VedranBrnjetic commented 7 years ago

Hi,

A notification just appeared on my Braintree Payment gateway informing me that they will be dropping TLS 1.0 and 1.1 support in production:

"As part of PCI 3.1 requirements, we will be deprecating support for TLS 1.0 and 1.1 in Production on June 30, 2017. You can find information on how to update your systems here - http://bit.ly/2h5v0w3. "

I hope this is the right place to poke about it as I am using this plugin on my website. Can you tell me what it means for me?

AndreiMaz commented 7 years ago

@skoshelev Назначаю тебе. посмотри

skoshelev commented 7 years ago

@AndreiMaz @VedranBrnjetic We use the official version of the SDK for Braintree version 3.4, from the version 3.1 the SDK supports TLS v1.2. I have found this code in their source code from GitHub:

const int SecurityProtocolTypeTls12 = 3072;
ServicePointManager.SecurityProtocol = ServicePointManager.SecurityProtocol | ((SecurityProtocolType)SecurityProtocolTypeTls12);
skoshelev commented 5 years ago

Closed #2