Merge pull request #3262 from lindenlab/add_continuations_test
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / SslStreamSecurityBindingElement.cs
1 //
2 // SslStreamSecurityBindingElement.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2006 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System.Collections.Generic;
29 using System.Collections.ObjectModel;
30 using System.IO;
31 using System.Net.Security;
32 using System.ServiceModel.Channels;
33 using System.ServiceModel.Description;
34 using System.ServiceModel.Security;
35 using System.ServiceModel.Security.Tokens;
36 using System.Xml;
37
38 namespace System.ServiceModel.Channels
39 {
40         [MonoTODO]
41         public class SslStreamSecurityBindingElement
42                 : BindingElement, ITransportTokenAssertionProvider, IPolicyExportExtension
43         {
44                 public SslStreamSecurityBindingElement ()
45                 {
46 #if !MOBILE && !XAMMAC_4_5
47                         verifier = IdentityVerifier.CreateDefault ();
48 #endif
49                 }
50
51 #if !MOBILE && !XAMMAC_4_5
52                 IdentityVerifier verifier;
53
54                 public IdentityVerifier IdentityVerifier {
55                         get { return verifier; }
56                         set { verifier = value; }
57                 }
58 #endif
59
60                 bool require_client_certificate;
61
62                 public bool RequireClientCertificate {
63                         get { return require_client_certificate; }
64                         set { require_client_certificate = value; }
65                 }
66
67                 private SslStreamSecurityBindingElement (
68                         SslStreamSecurityBindingElement other)
69                         : base (other)
70                 {
71 #if !MOBILE && !XAMMAC_4_5
72                         verifier = other.verifier;
73 #endif
74                         require_client_certificate = other.require_client_certificate;
75                 }
76
77 #if !MOBILE && !XAMMAC_4_5
78                 [MonoTODO]
79                 public StreamUpgradeProvider BuildClientStreamUpgradeProvider (BindingContext context)
80                 {
81                         return new SslStreamSecurityUpgradeProvider (this);
82                 }
83
84                 [MonoTODO]
85                 public StreamUpgradeProvider BuildServerStreamUpgradeProvider (BindingContext context)
86                 {
87                         throw new NotImplementedException ();
88                 }
89
90                 [MonoTODO]
91                 public XmlElement GetTransportTokenAssertion ()
92                 {
93                         var doc = new XmlDocument ();
94                         var element = doc.CreateElement (
95                                 "msf", "SslTransportSecurity", PolicyImportHelper.FramingPolicyNS);
96                         return element;
97                 }
98 #endif
99
100                 [MonoTODO]
101                 public override IChannelFactory<TChannel>
102                         BuildChannelFactory<TChannel> (
103                         BindingContext context)
104                 {
105                         throw new NotImplementedException ();
106                 }
107
108 #if !MOBILE && !XAMMAC_4_5
109                 [MonoTODO]
110                 public override IChannelListener<TChannel>
111                         BuildChannelListener<TChannel> (
112                         BindingContext context)
113                 {
114                         throw new NotImplementedException ();
115                 }
116 #endif
117
118                 [MonoTODO]
119                 public override bool CanBuildChannelFactory<TChannel> (
120                         BindingContext context)
121                 {
122                         throw new NotImplementedException ();
123                 }
124
125 #if !MOBILE && !XAMMAC_4_5
126                 [MonoTODO]
127                 public override bool CanBuildChannelListener<TChannel> (
128                         BindingContext context)
129                 {
130                         throw new NotImplementedException ();
131                 }
132 #endif
133
134                 public override BindingElement Clone ()
135                 {
136                         return new SslStreamSecurityBindingElement (this);
137                 }
138
139                 [MonoTODO]
140                 public override T GetProperty<T> (BindingContext context)
141                 {
142                         throw new NotImplementedException ();
143                 }
144
145 #if !MOBILE && !XAMMAC_4_5
146                 #region explicit interface implementations
147                 [MonoTODO]
148                 void IPolicyExportExtension.ExportPolicy (
149                         MetadataExporter exporter,
150                         PolicyConversionContext context)
151                 {
152                         var token = GetTransportTokenAssertion ();
153                         var transportBinding = TransportBindingElement.CreateTransportBinding (token);
154                         context.GetBindingAssertions ().Add (transportBinding);
155                 }
156                 #endregion
157 #endif
158         }
159 }