Merge pull request #629 from pruiz/syswebrouting-fixes2
[mono.git] / mcs / class / System / System / AndroidPlatform.cs
1 //
2 // System.AndroidPlatform.cs
3 //
4 // Author:
5 //   Jonathan Pryor (jonp@xamarin.com)
6 //
7 // Copyright (C) 2012 Xamarin Inc (http://xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 #if SECURITY_DEP
29 extern alias MonoSecurity;
30 #endif
31
32 #if MONODROID
33 using System;
34 using System.Net.Security;
35 using System.Security.Cryptography.X509Certificates;
36 #if SECURITY_DEP
37 using MSX = MonoSecurity::Mono.Security.X509;
38 #endif
39
40 namespace System {
41
42         internal static class AndroidPlatform {
43
44 #if SECURITY_DEP
45                 static readonly Converter<MSX.X509CertificateCollection, bool> trustEvaluateSsl;
46                 static readonly Func<MSX.X509CertificateCollection, object, X509Certificate2, X509Chain, SslPolicyErrors, bool> trustEvaluateSsl2;
47 #endif  // SECURITY_DEP
48
49
50                 static AndroidPlatform ()
51                 {
52 #if SECURITY_DEP
53                         var t = Type.GetType ("Android.Runtime.AndroidEnvironment, Mono.Android", throwOnError:true);
54                         trustEvaluateSsl2 = (Func<MSX.X509CertificateCollection, object, X509Certificate2, X509Chain, SslPolicyErrors, bool>)
55                                 Delegate.CreateDelegate (
56                                                 typeof (Func<MSX.X509CertificateCollection, object, X509Certificate2, X509Chain, SslPolicyErrors, bool>),
57                                                 t,
58                                                 "TrustEvaluateSsl2",
59                                                 ignoreCase:false,
60                                                 throwOnBindFailure:false);
61                         if (trustEvaluateSsl2 == null)
62                                 trustEvaluateSsl = (Converter<MSX.X509CertificateCollection, bool>)
63                                         Delegate.CreateDelegate (typeof (Converter<MSX.X509CertificateCollection, bool>),
64                                                         t,
65                                                         "TrustEvaluateSsl",
66                                                         ignoreCase:false,
67                                                         throwOnBindFailure:true);
68 #endif  // SECURITY_DEP
69                 }
70
71 #if SECURITY_DEP
72                 internal static bool TrustEvaluateSsl (MSX.X509CertificateCollection collection, object sender, X509Certificate2 certificate, X509Chain chain, SslPolicyErrors errors)
73                 {
74                         if (trustEvaluateSsl2 != null)
75                                 return trustEvaluateSsl2 (collection, sender, certificate, chain, errors);
76                         return trustEvaluateSsl (collection);
77                 }
78 #endif  // SECURITY_DEP
79         }
80 }
81 #endif  // MONODROID