Cleaning up SslStream, MobileAuthenticatedStream and TaskToApm. (#17393)
[mono-project.git] / mcs / class / System / Mono.Net.Security / NoReflectionHelper.cs
blobe5ef498196668ac683f07337529e45eb2d49eb91
1 //
2 // NoReflectionHelper.cs
3 //
4 // Author:
5 // Martin Baulig <martin.baulig@xamarin.com>
6 //
7 // Copyright (c) 2015 Xamarin, Inc.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
27 #if SECURITY_DEP
28 #if MONO_SECURITY_ALIAS
29 extern alias MonoSecurity;
30 using MSI = MonoSecurity::Mono.Security.Interface;
31 using MX = MonoSecurity::Mono.Security.X509;
32 #else
33 using MSI = Mono.Security.Interface;
34 using MX = Mono.Security.X509;
35 #endif
36 using System.Security.Cryptography.X509Certificates;
37 #endif
39 using System;
40 using System.Net;
41 using System.Net.Security;
43 namespace Mono.Net.Security
46 // Internal APIs which are used by Mono.Security.dll to avoid using reflection.
48 internal static class NoReflectionHelper
50 internal static object GetDefaultValidator (object settings)
52 #if SECURITY_DEP
53 return ChainValidationHelper.GetDefaultValidator ((MSI.MonoTlsSettings)settings);
54 #else
55 throw new NotSupportedException ();
56 #endif
59 internal static object GetProvider ()
61 #if SECURITY_DEP
62 return MonoTlsProviderFactory.GetProvider ();
63 #else
64 throw new NotSupportedException ();
65 #endif
68 internal static bool IsInitialized {
69 get {
70 #if SECURITY_DEP
71 return MonoTlsProviderFactory.IsInitialized;
72 #else
73 throw new NotSupportedException ();
74 #endif
78 internal static void Initialize ()
80 #if SECURITY_DEP
81 MonoTlsProviderFactory.Initialize ();
82 #else
83 throw new NotSupportedException ();
84 #endif
87 internal static void Initialize (string provider)
89 #if SECURITY_DEP
90 MonoTlsProviderFactory.Initialize (provider);
91 #else
92 throw new NotSupportedException ();
93 #endif
96 internal static HttpWebRequest CreateHttpsRequest (Uri requestUri, object provider, object settings)
98 #if SECURITY_DEP
99 return new HttpWebRequest (requestUri, (MobileTlsProvider)provider, (MSI.MonoTlsSettings)settings);
100 #else
101 throw new NotSupportedException ();
102 #endif
105 internal static object CreateHttpListener (object certificate, object provider, object settings)
107 #if SECURITY_DEP
108 return new HttpListener ((X509Certificate)certificate, (MSI.MonoTlsProvider)provider, (MSI.MonoTlsSettings)settings);
109 #else
110 throw new NotSupportedException ();
111 #endif
114 internal static object GetMonoSslStream (SslStream stream)
116 #if SECURITY_DEP
117 return stream.Impl;
118 #else
119 throw new NotSupportedException ();
120 #endif
123 internal static object GetMonoSslStream (HttpListenerContext context)
125 #if SECURITY_DEP
126 return context.Connection.SslStream?.Impl;
127 #else
128 throw new NotSupportedException ();
129 #endif
132 internal static bool IsProviderSupported (string name)
134 #if SECURITY_DEP
135 return MonoTlsProviderFactory.IsProviderSupported (name);
136 #else
137 throw new NotSupportedException ();
138 #endif
141 internal static object GetProvider (string name)
143 #if SECURITY_DEP
144 return MonoTlsProviderFactory.GetProvider (name);
145 #else
146 throw new NotSupportedException ();
147 #endif