Imported Upstream version 4.8.0.309

Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-11-10 13:04:39 +00:00
parent ee1447783b
commit 94b2861243
4912 changed files with 390737 additions and 49310 deletions

View File

@@ -1,87 +0,0 @@
//
// BinarySecretKeyIdentifierClause.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2006 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.
//
using System;
using System.Collections.Generic;
using System.Xml;
using System.IdentityModel.Policy;
using System.IdentityModel.Tokens;
namespace System.ServiceModel.Security
{
public class BinarySecretKeyIdentifierClause : BinaryKeyIdentifierClause
{
public BinarySecretKeyIdentifierClause (byte [] key)
: this (key, true)
{
}
[MonoTODO ("ClauseType")]
public BinarySecretKeyIdentifierClause (byte [] key, bool cloneBuffer)
: base ("", key, cloneBuffer)
{
}
[MonoTODO ("ClauseType")]
public BinarySecretKeyIdentifierClause (byte [] key, bool cloneBuffer, byte [] derivationNonce, int derivationLength)
: base ("", key, cloneBuffer, derivationNonce, derivationLength)
{
}
public override bool CanCreateKey {
get { return true; }
}
public byte [] GetKeyBytes ()
{
return GetBuffer ();
}
public override SecurityKey CreateKey ()
{
return new InMemorySymmetricSecurityKey (GetRawBuffer (), true);
}
public override bool Matches (SecurityKeyIdentifierClause clause)
{
if (clause == null)
throw new ArgumentNullException ("clause");
BinarySecretKeyIdentifierClause other =
clause as BinarySecretKeyIdentifierClause;
if (other == null)
return false;
byte [] b1 = GetRawBuffer ();
byte [] b2 = other.GetRawBuffer ();
if (b1.Length != b2.Length)
return false;
for (int i = 0; i < b1.Length; i++)
if (b1 [i] != b2 [i])
return false;
return true;
}
}
}

View File

@@ -1,69 +0,0 @@
//
// KeyNameIdentifierClause.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2006 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.
//
using System;
using System.Collections.Generic;
using System.Xml;
using System.IdentityModel.Policy;
using System.IdentityModel.Tokens;
namespace System.ServiceModel.Security
{
public class KeyNameIdentifierClause : SecurityKeyIdentifierClause
{
public KeyNameIdentifierClause (string keyName)
: base (null)
{
key_name = keyName;
}
string key_name;
public string KeyName {
get { return key_name; }
}
public override bool Matches (SecurityKeyIdentifierClause clause)
{
if (clause == null)
throw new ArgumentNullException ("clause");
KeyNameIdentifierClause knic =
clause as KeyNameIdentifierClause;
return knic != null && Matches (knic.KeyName);
}
public bool Matches (string keyName)
{
return key_name == keyName;
}
public override string ToString ()
{
return String.Concat ("KeyNameIdentifierClause(KeyName = '", KeyName, "')");
}
}
}

View File

@@ -1,84 +0,0 @@
//
// SecurityContextKeyIdentifierClause.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2006 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.
//
using System.IdentityModel.Selectors;
using System.IdentityModel.Tokens;
using System.Xml;
namespace System.ServiceModel.Security
{
public class SecurityContextKeyIdentifierClause : SecurityKeyIdentifierClause
{
public SecurityContextKeyIdentifierClause (UniqueId contextId)
: this (contextId, new UniqueId ())
{
}
public SecurityContextKeyIdentifierClause (UniqueId contextId, UniqueId generation)
: this (contextId, generation, null, 0)
{
}
public SecurityContextKeyIdentifierClause (UniqueId contextId, UniqueId generation, byte [] derivationNonce, int derivationLength)
: base (null, derivationNonce, derivationLength)
{
this.context = contextId;
this.generation = generation;
}
UniqueId context, generation;
public UniqueId ContextId {
get { return context; }
}
public UniqueId Generation {
get { return generation; }
}
public override bool Matches (
SecurityKeyIdentifierClause keyIdentifierClause)
{
SecurityContextKeyIdentifierClause other =
keyIdentifierClause as SecurityContextKeyIdentifierClause;
return other != null && Matches (other.context, other.generation);
}
public bool Matches (UniqueId contextId, UniqueId generation)
{
return context == contextId &&
this.generation == generation;
}
[MonoTODO]
public override string ToString ()
{
return base.ToString ();
}
}
}

View File

@@ -57,7 +57,7 @@ namespace System.ServiceModel.Security
StoreName storeName, X509FindType findType,
object findValue)
{
#if !NET_2_1
#if !MOBILE
certificate = ConfigUtil.CreateCertificateFrom (storeLocation, storeName, findType, findValue);
#else
throw new NotImplementedException ();
@@ -68,7 +68,7 @@ namespace System.ServiceModel.Security
string subjectName, StoreLocation storeLocation,
StoreName storeName)
{
#if !NET_2_1
#if !MOBILE
certificate = ConfigUtil.CreateCertificateFrom (storeLocation, storeName, X509FindType.FindBySubjectName, subjectName);
#else
throw new NotImplementedException ();

View File

@@ -27,7 +27,7 @@
//
using System;
using System.Collections.Generic;
#if !NET_2_1
#if !MOBILE
using System.IdentityModel.Selectors;
#endif
using System.Security.Cryptography.X509Certificates;
@@ -49,7 +49,7 @@ namespace System.ServiceModel.Security
X509Certificate2 certificate;
Dictionary<Uri,X509Certificate2> scoped =
new Dictionary<Uri,X509Certificate2> ();
#if !NET_2_1
#if !MOBILE
X509CertificateValidator validator;
#endif
X509RevocationMode revocation_mode;
@@ -92,7 +92,7 @@ namespace System.ServiceModel.Security
public void SetDefaultCertificate (StoreLocation storeLocation,
StoreName storeName, X509FindType findType, Object findValue)
{
#if !NET_2_1
#if !MOBILE
DefaultCertificate = ConfigUtil.CreateCertificateFrom (storeLocation, storeName, findType, findValue);
#else
throw new NotImplementedException ();
@@ -110,7 +110,7 @@ namespace System.ServiceModel.Security
StoreName storeName, X509FindType findType,
Object findValue, Uri targetService)
{
#if !NET_2_1
#if !MOBILE
ScopedCertificates [targetService] = ConfigUtil.CreateCertificateFrom (storeLocation, storeName, findType, findValue);
#else
throw new NotImplementedException ();