I have a fairly complex development environment for my current project and needed to allow some self-signed certificates to pass through the SSL certificate chaining process when calling from mobile platforms. Obviously, this is potentially breaking a major security feature and need to be done safely.
In a ‘normal’ MvvmCross or Xamarin.Forms application you want to include as much in the core PCL project as possible for portability and code-sharing. Unfortunately there is no PCL implementation of the ServicePointManager class, but this is defined in both Xamarin.iOS and Xamarin.Android. Strangely, another instance where Windows Phone is problematic as this isn’t defined at all in WP.
Given that I have another shared library that hosts my API client that is compiled into a platform specific version I can do this here and have that shared. Otherwise your best options are including this code in the platform specific projects somewhere in the Setup.cs class for instance.
Bypass Certificate Checking
#if DEBUG
ServicePointManager.ServerCertificateValidationCallback += new RemoteCertificateValidationCallback(
(sender, certificate, chain, policyErrors) =>
{
if (policyErrors == SslPolicyErrors.None)
{
return true;
}
var certThumprint = string.Join("", certificate.GetCertHash().Select(h => h.ToString("X2")));
var thumbprint = "<YOUR CERT THUMBPRINT>";
if (certThumprint == thumbprint)
{
return true;
}
return false;
});
#endif
I have a fairly complex development environment for my current project and needed to allow some self-signed certificates to pass through the SSL certificate chaining process when calling from mobile platforms. Obviously, this is potentially breaking a major security feature and need to be done safely.
In a ‘normal’ MvvmCross or Xamarin.Forms application you want to include as much in the core PCL project as possible for portability and code-sharing. Unfortunately there is no PCL implementation of the ServicePointManager class, but this is defined in both Xamarin.iOS and Xamarin.Android. Strangely, another instance where Windows Phone is problematic as this isn’t defined at all in WP.
Given that I have another shared library that hosts my API client that is compiled into a platform specific version I can do this here and have that shared. Otherwise your best options are including this code in the platform specific projects somewhere in the Setup.cs class for instance.
Bypass Certificate Checking