2014-08-13 10:39:27 +01:00
|
|
|
//
|
|
|
|
// SecureConversationSecurityTokenParameters.cs
|
|
|
|
//
|
|
|
|
// Author:
|
|
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
|
|
//
|
|
|
|
// Copyright (C) 2006-2007 Novell, Inc. http://www.novell.com
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
// a copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
// the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be
|
|
|
|
// included in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
using System.IdentityModel.Selectors;
|
|
|
|
using System.IdentityModel.Tokens;
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
using System.ServiceModel.Channels;
|
|
|
|
using System.ServiceModel.Security;
|
|
|
|
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
using ReqType = System.ServiceModel.Security.Tokens.ServiceModelSecurityTokenRequirement;
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
namespace System.ServiceModel.Security.Tokens
|
|
|
|
{
|
|
|
|
public class SecureConversationSecurityTokenParameters : SecurityTokenParameters
|
|
|
|
{
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
static readonly ChannelProtectionRequirements default_channel_protection_requirements;
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
static readonly BindingContext dummy_context;
|
|
|
|
|
|
|
|
static SecureConversationSecurityTokenParameters ()
|
|
|
|
{
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
ChannelProtectionRequirements r =
|
|
|
|
new ChannelProtectionRequirements ();
|
|
|
|
r.IncomingSignatureParts.ChannelParts.IsBodyIncluded = true;
|
|
|
|
r.OutgoingSignatureParts.ChannelParts.IsBodyIncluded = true;
|
|
|
|
r.IncomingEncryptionParts.ChannelParts.IsBodyIncluded = true;
|
|
|
|
r.OutgoingEncryptionParts.ChannelParts.IsBodyIncluded = true;
|
|
|
|
r.MakeReadOnly ();
|
|
|
|
default_channel_protection_requirements = r;
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
dummy_context = new BindingContext (
|
|
|
|
new CustomBinding (),
|
|
|
|
new BindingParameterCollection ());
|
|
|
|
}
|
|
|
|
|
|
|
|
SecurityBindingElement element;
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
ChannelProtectionRequirements requirements;
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
bool cancellable;
|
|
|
|
|
|
|
|
public SecureConversationSecurityTokenParameters ()
|
|
|
|
: this ((SecurityBindingElement) null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public SecureConversationSecurityTokenParameters (
|
2016-09-01 10:46:18 +00:00
|
|
|
SecurityBindingElement bootstrapSecurityBindingElement)
|
|
|
|
: this (bootstrapSecurityBindingElement, true)
|
2014-08-13 10:39:27 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public SecureConversationSecurityTokenParameters (
|
2016-09-01 10:46:18 +00:00
|
|
|
SecurityBindingElement bootstrapSecurityBindingElement,
|
2014-08-13 10:39:27 +01:00
|
|
|
bool requireCancellation)
|
2016-09-01 10:46:18 +00:00
|
|
|
: this (bootstrapSecurityBindingElement, requireCancellation, null)
|
2014-08-13 10:39:27 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
public SecureConversationSecurityTokenParameters (
|
2016-09-01 10:46:18 +00:00
|
|
|
SecurityBindingElement bootstrapSecurityBindingElement,
|
2014-08-13 10:39:27 +01:00
|
|
|
bool requireCancellation,
|
2016-09-01 10:46:18 +00:00
|
|
|
ChannelProtectionRequirements bootstrapProtectionRequirements)
|
2014-08-13 10:39:27 +01:00
|
|
|
{
|
2016-09-01 10:46:18 +00:00
|
|
|
this.element = bootstrapSecurityBindingElement;
|
2014-08-13 10:39:27 +01:00
|
|
|
this.cancellable = requireCancellation;
|
2016-09-01 10:46:18 +00:00
|
|
|
if (bootstrapProtectionRequirements == null)
|
2014-08-13 10:39:27 +01:00
|
|
|
this.requirements = new ChannelProtectionRequirements (default_channel_protection_requirements);
|
|
|
|
else
|
2016-09-01 10:46:18 +00:00
|
|
|
this.requirements = new ChannelProtectionRequirements (bootstrapProtectionRequirements);
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
2016-07-21 09:40:10 +00:00
|
|
|
#else
|
|
|
|
internal SecureConversationSecurityTokenParameters (
|
|
|
|
SecurityBindingElement element,
|
|
|
|
bool requireCancellation,
|
|
|
|
object dummy)
|
|
|
|
{
|
|
|
|
this.element = element;
|
|
|
|
this.cancellable = requireCancellation;
|
|
|
|
}
|
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
|
2017-06-07 13:16:24 +00:00
|
|
|
protected SecureConversationSecurityTokenParameters (SecureConversationSecurityTokenParameters other)
|
|
|
|
: base (other)
|
2014-08-13 10:39:27 +01:00
|
|
|
{
|
2017-06-07 13:16:24 +00:00
|
|
|
this.element = (SecurityBindingElement) other.element.Clone ();
|
|
|
|
this.cancellable = other.cancellable;
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
this.requirements = new ChannelProtectionRequirements (default_channel_protection_requirements);
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool RequireCancellation {
|
|
|
|
get { return cancellable; }
|
|
|
|
set { cancellable = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public SecurityBindingElement BootstrapSecurityBindingElement {
|
|
|
|
get { return element; }
|
|
|
|
set { element = value; }
|
|
|
|
}
|
|
|
|
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
public ChannelProtectionRequirements BootstrapProtectionRequirements {
|
|
|
|
get { return requirements; }
|
|
|
|
}
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
// SecurityTokenParameters
|
|
|
|
|
|
|
|
protected override bool HasAsymmetricKey {
|
|
|
|
get { return false; }
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool SupportsClientAuthentication {
|
|
|
|
get { return element.GetProperty<ISecurityCapabilities> (dummy_context).SupportsClientAuthentication; }
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool SupportsClientWindowsIdentity {
|
|
|
|
get { return element.GetProperty<ISecurityCapabilities> (dummy_context).SupportsClientWindowsIdentity; }
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool SupportsServerAuthentication {
|
|
|
|
get { return element.GetProperty<ISecurityCapabilities> (dummy_context).SupportsServerAuthentication; }
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override SecurityTokenParameters CloneCore ()
|
|
|
|
{
|
|
|
|
return new SecureConversationSecurityTokenParameters (this);
|
|
|
|
}
|
|
|
|
|
2016-07-21 09:40:10 +00:00
|
|
|
#if !MOBILE && !XAMMAC_4_5
|
2014-08-13 10:39:27 +01:00
|
|
|
[MonoTODO]
|
|
|
|
protected override SecurityKeyIdentifierClause CreateKeyIdentifierClause (
|
|
|
|
SecurityToken token, SecurityTokenReferenceStyle referenceStyle)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException ();
|
|
|
|
}
|
|
|
|
[MonoTODO]
|
|
|
|
protected internal override void InitializeSecurityTokenRequirement (SecurityTokenRequirement requirement)
|
|
|
|
{
|
|
|
|
// .NET somehow causes NRE. dunno why.
|
|
|
|
requirement.TokenType = ServiceModelSecurityTokenTypes.SecureConversation;
|
|
|
|
requirement.RequireCryptographicToken = true;
|
|
|
|
requirement.Properties [ReqType.SupportSecurityContextCancellationProperty] = RequireCancellation;
|
|
|
|
requirement.Properties [ReqType.SecureConversationSecurityBindingElementProperty] =
|
|
|
|
BootstrapSecurityBindingElement;
|
|
|
|
requirement.Properties [ReqType.IssuedSecurityTokenParametersProperty] = this.Clone ();
|
|
|
|
requirement.KeyType = SecurityKeyType.SymmetricKey;
|
|
|
|
}
|
2016-07-21 09:40:10 +00:00
|
|
|
#endif
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
public override string ToString ()
|
|
|
|
{
|
|
|
|
return base.ToString ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|