[runtime] Update msvc build scripts.
[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 #endif
38
39 using System;
40 using System.IO;
41 using System.Net;
42 using System.Net.Security;
43 using System.Security.Cryptography.X509Certificates;
44
45 namespace Mono.Net.Security
46 {
47         /*
48          * For consumption within System.dll only - do not access from friend assemblies.
49          * 
50          * Unfortunately, there's some compiler madness involved when using Mono.Security.dll
51          * APIs from within System.dll because the compiler perceives those types which come
52          * from the prebuilt version of System.dll being different from those it's currently
53          * compiling.  At runtime, there is only one single System.dll, so these all map to
54          * the same actual type.
55          * 
56          * This internal interface helps to keep all this compilation stuff contained within
57          * the 'Mono.Net.Security.Private' namespace - this namespace should be considered
58          * strictly private and must not be accessed from files outside the Mono.Net.Security
59          * directory.
60          * 
61          */
62         interface IMonoTlsProvider
63         {
64 #if SECURITY_DEP
65                 MonoTlsProvider Provider {
66                         get;
67                 }
68
69                 IMonoSslStream CreateSslStream (
70                         Stream innerStream, bool leaveInnerStreamOpen,
71                         MonoTlsSettings settings);
72 #endif
73         }
74 }