Jump to content

how to bypass Triple Des


agubanks

Recommended Posts

Client a = new Client(Settings.TripleDesAppServiceProvider);
Console.WriteLine(a);
 
 
 
if (Settings.TurnSecurityProtocolType3072On)
{
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
var client = new HttpClient(new AndroidClientHandler());
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls13;
Console.WriteLine(client);
}
 
if (Settings.TurnTrustFailureOnWebException)
{
 
 
ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;
var b = new AesCryptoServiceProvider();
Console.WriteLine(b);
}
 
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...