Merge pull request #2200 from xmcclure/image-audit-oops
[mono.git] / mcs / class / System / Mono.Net.Security / MonoDefaultTlsProvider.cs
1 //
2 // MonoDefaultTlsProvider.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 #if SECURITY_DEP
27 #if MONO_X509_ALIAS
28 extern alias PrebuiltSystem;
29 #endif
30 #if MONO_SECURITY_ALIAS
31 extern alias MonoSecurity;
32 #endif
33
34 #if MONO_X509_ALIAS
35 using XHttpWebRequest = PrebuiltSystem::System.Net.HttpWebRequest;
36 using XSslProtocols = PrebuiltSystem::System.Security.Authentication.SslProtocols;
37 using XX509CertificateCollection = PrebuiltSystem::System.Security.Cryptography.X509Certificates.X509CertificateCollection;
38 #else
39 using XHttpWebRequest = System.Net.HttpWebRequest;
40 using XSslProtocols = System.Security.Authentication.SslProtocols;
41 using XX509CertificateCollection = System.Security.Cryptography.X509Certificates.X509CertificateCollection;
42 #endif
43
44 #if MONO_SECURITY_ALIAS
45 using MonoSecurity::Mono.Security.Interface;
46 #else
47 using Mono.Security.Interface;
48 #endif
49
50 using System;
51 using System.IO;
52 using System.Net;
53 using System.Net.Security;
54 using System.Security.Cryptography.X509Certificates;
55
56 namespace Mono.Net.Security.Private
57 {
58         /*
59          * Strictly private - do not use outside the Mono.Net.Security directory.
60          */
61         class MonoDefaultTlsProvider : MonoTlsProviderImpl
62         {
63                 public MonoTlsProvider Provider {
64                         get { return this; }
65                 }
66
67                 public override bool SupportsSslStream {
68                         get { return true; }
69                 }
70
71                 public override bool SupportsMonoExtensions {
72                         get { return false; }
73                 }
74
75                 public override bool SupportsTlsContext {
76                         get { return false; }
77                 }
78
79                 public override XSslProtocols SupportedProtocols {
80                         get { return XSslProtocols.Ssl3 | XSslProtocols.Tls; }
81                 }
82
83                 protected override IMonoSslStream CreateSslStreamImpl (
84                         Stream innerStream, bool leaveInnerStreamOpen,
85                         MonoTlsSettings settings)
86                 {
87                         return new LegacySslStream (innerStream, leaveInnerStreamOpen, this, settings);
88                 }
89
90                 protected override IMonoTlsContext CreateTlsContextImpl (
91                         string hostname, bool serverMode, TlsProtocols protocolFlags,
92                         X509Certificate serverCertificate, X509CertificateCollection clientCertificates,
93                         bool remoteCertRequired, MonoEncryptionPolicy encryptionPolicy,
94                         MonoTlsSettings settings)
95                 {
96                         throw new NotSupportedException ();
97                 }
98         }
99 }
100 #endif
101