[boehm] Put *_freelists into thread_local_freelists (as in BDWGC v7)
[mono.git] / mcs / class / Mono.Security.Providers.OldTls / Mono.Security.Providers.OldTls / OldTlsProvider.cs
1 //
2 // OldTlsProvider.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 using System;
27 using System.IO;
28 using System.Net;
29 using System.Net.Security;
30 using System.Security.Authentication;
31 using System.Security.Cryptography.X509Certificates;
32 using Mono.Security.Interface;
33 using Mono.Net.Security;
34
35 namespace Mono.Security.Providers.OldTls
36 {
37         public class OldTlsProvider : MonoTlsProvider
38         {
39                 public override bool SupportsSslStream {
40                         get { return true; }
41                 }
42
43                 public override bool SupportsMonoExtensions {
44                         get { return false; }
45                 }
46
47                 public override bool SupportsTlsContext {
48                         get { return false; }
49                 }
50
51                 public override SslProtocols SupportedProtocols {
52                         get { return SslProtocols.Tls; }
53                 }
54
55                 public override MonoSslStream CreateSslStream (
56                         Stream innerStream, bool leaveInnerStreamOpen,
57                         MonoTlsSettings settings = null)
58                 {
59                         var impl = new LegacySslStream (innerStream, leaveInnerStreamOpen, this, settings);
60                         return new MonoSslStreamImpl (impl);
61                 }
62
63                 public override IMonoTlsContext CreateTlsContext (
64                         string hostname, bool serverMode, TlsProtocols protocolFlags,
65                         X509Certificate serverCertificate, X509CertificateCollection clientCertificates,
66                         bool remoteCertRequired, MonoEncryptionPolicy encryptionPolicy,
67                         MonoTlsSettings settings)
68                 {
69                         throw new NotSupportedException ();
70                 }
71         }
72 }
73