2
0

SslStreamSecurityBindingElement.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. //
  2. // SslStreamSecurityBindingElement.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  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.Security.Authentication;
  33. using System.ServiceModel.Channels;
  34. using System.ServiceModel.Description;
  35. using System.ServiceModel.Security;
  36. using System.ServiceModel.Security.Tokens;
  37. using System.Xml;
  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. #if !MOBILE && !XAMMAC_4_5
  51. IdentityVerifier verifier;
  52. public IdentityVerifier IdentityVerifier {
  53. get { return verifier; }
  54. set { verifier = value; }
  55. }
  56. #endif
  57. bool require_client_certificate;
  58. public bool RequireClientCertificate {
  59. get { return require_client_certificate; }
  60. set { require_client_certificate = value; }
  61. }
  62. [MonoTODO]
  63. public SslProtocols SslProtocols {
  64. get { throw new NotImplementedException (); }
  65. set { throw new NotImplementedException (); }
  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. #if !MOBILE && !XAMMAC_4_5
  77. [MonoTODO]
  78. public StreamUpgradeProvider BuildClientStreamUpgradeProvider (BindingContext context)
  79. {
  80. return new SslStreamSecurityUpgradeProvider (this);
  81. }
  82. [MonoTODO]
  83. public StreamUpgradeProvider BuildServerStreamUpgradeProvider (BindingContext context)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public XmlElement GetTransportTokenAssertion ()
  89. {
  90. var doc = new XmlDocument ();
  91. var element = doc.CreateElement (
  92. "msf", "SslTransportSecurity", PolicyImportHelper.FramingPolicyNS);
  93. return element;
  94. }
  95. #endif
  96. [MonoTODO]
  97. public override IChannelFactory<TChannel>
  98. BuildChannelFactory<TChannel> (
  99. BindingContext context)
  100. {
  101. throw new NotImplementedException ();
  102. }
  103. #if !MOBILE && !XAMMAC_4_5
  104. [MonoTODO]
  105. public override IChannelListener<TChannel>
  106. BuildChannelListener<TChannel> (
  107. BindingContext context)
  108. {
  109. throw new NotImplementedException ();
  110. }
  111. #endif
  112. [MonoTODO]
  113. public override bool CanBuildChannelFactory<TChannel> (
  114. BindingContext context)
  115. {
  116. throw new NotImplementedException ();
  117. }
  118. #if !MOBILE && !XAMMAC_4_5
  119. [MonoTODO]
  120. public override bool CanBuildChannelListener<TChannel> (
  121. BindingContext context)
  122. {
  123. throw new NotImplementedException ();
  124. }
  125. #endif
  126. public override BindingElement Clone ()
  127. {
  128. return new SslStreamSecurityBindingElement (this);
  129. }
  130. [MonoTODO]
  131. public override T GetProperty<T> (BindingContext context)
  132. {
  133. throw new NotImplementedException ();
  134. }
  135. #if !MOBILE && !XAMMAC_4_5
  136. #region explicit interface implementations
  137. [MonoTODO]
  138. void IPolicyExportExtension.ExportPolicy (
  139. MetadataExporter exporter,
  140. PolicyConversionContext context)
  141. {
  142. var token = GetTransportTokenAssertion ();
  143. var transportBinding = TransportBindingElement.CreateTransportBinding (token);
  144. context.GetBindingAssertions ().Add (transportBinding);
  145. }
  146. #endregion
  147. #endif
  148. }
  149. }