Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Paypal TLS Security changes

As you all probably know, Paypal is upgrading TLS security protocols to 1.2. .Net 3.5 does NOT support this - I have a website in .Net 3.5 Framework which makes use of Paypal payments. What are my alternatives?

Updating will require huge changes to my solution and it is not ideal, not enough resources and time -

like image 654
JPJ Avatar asked Feb 06 '26 09:02

JPJ


1 Answers

A possible solution for not only a C# project stuck on 3.5 but also for any system that is not able to directly implement TLS 1.2 is to use a relay or proxy that does support that.

This obviously adds some complexity because you need to slot a service in between yours and the destination but if you need to upgrade then that could be a stepping stone to the upgrade.

This is essentially the same solution suggested by Raskayu for using Fiddler but expanded to use any language to do this.

like image 69
Guy Avatar answered Feb 08 '26 22:02

Guy