Merge pull request #2910 from cptjazz/compiler_warnings
[mono.git] / mcs / class / System / Mono.Net.Security / IMonoTlsProvider.cs
1 //
2 // IMonoTlsProvider.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:
15 //
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 //
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.
26
27 #if SECURITY_DEP
28 #if MONO_SECURITY_ALIAS
29 extern alias MonoSecurity;
30 #endif
31
32 #if MONO_SECURITY_ALIAS
33 using MonoSecurity::Mono.Security.Interface;
34 #else
35 using Mono.Security.Interface;
36 #endif
37 using XX509CertificateCollection = System.Security.Cryptography.X509Certificates.X509CertificateCollection;
38 #endif
39
40 using System;
41 using System.IO;
42 using System.Net;
43 using System.Net.Security;
44 using System.Security.Cryptography.X509Certificates;
45
46 namespace Mono.Net.Security
47 {
48         /*
49          * For consumption within System.dll only - do not access from friend assemblies.
50          * 
51          * Unfortunately, there's some compiler madness involved when using Mono.Security.dll
52          * APIs from within System.dll because the compiler perceives those types which come
53          * from the prebuilt version of System.dll being different from those it's currently
54          * compiling.  At runtime, there is only one single System.dll, so these all map to
55          * the same actual type.
56          * 
57          * This internal interface helps to keep all this compilation stuff contained within
58          * the 'Mono.Net.Security.Private' namespace - this namespace should be considered
59          * strictly private and must not be accessed from files outside the Mono.Net.Security
60          * directory.
61          * 
62          */
63         interface IMonoTlsProvider
64         {
65 #if SECURITY_DEP
66                 MonoTlsProvider Provider {
67                         get;
68                 }
69
70                 IMonoSslStream CreateSslStream (
71                         Stream innerStream, bool leaveInnerStreamOpen,
72                         MonoTlsSettings settings);
73
74                 IMonoTlsContext CreateTlsContext (
75                         string hostname, bool serverMode, TlsProtocols protocolFlags,
76                         X509Certificate serverCertificate, XX509CertificateCollection clientCertificates,
77                         bool remoteCertRequired, bool checkCertName, bool checkCertRevocationStatus,
78                         MonoEncryptionPolicy encryptionPolicy, MonoTlsSettings settings);
79 #endif
80         }
81 }