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