e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
150 lines
4.6 KiB
C#
150 lines
4.6 KiB
C#
//------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------
|
|
|
|
namespace System.IdentityModel.Tokens
|
|
{
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Globalization;
|
|
|
|
public class SecurityKeyIdentifier : IEnumerable<SecurityKeyIdentifierClause>
|
|
{
|
|
const int InitialSize = 2;
|
|
readonly List<SecurityKeyIdentifierClause> clauses;
|
|
bool isReadOnly;
|
|
|
|
public SecurityKeyIdentifier()
|
|
{
|
|
this.clauses = new List<SecurityKeyIdentifierClause>(InitialSize);
|
|
}
|
|
|
|
public SecurityKeyIdentifier(params SecurityKeyIdentifierClause[] clauses)
|
|
{
|
|
if (clauses == null)
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("clauses");
|
|
}
|
|
this.clauses = new List<SecurityKeyIdentifierClause>(clauses.Length);
|
|
for (int i = 0; i < clauses.Length; i++)
|
|
{
|
|
Add(clauses[i]);
|
|
}
|
|
}
|
|
|
|
public SecurityKeyIdentifierClause this[int index]
|
|
{
|
|
get { return this.clauses[index]; }
|
|
}
|
|
|
|
public bool CanCreateKey
|
|
{
|
|
get
|
|
{
|
|
for (int i = 0; i < this.Count; i++)
|
|
{
|
|
if (this[i].CanCreateKey)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public int Count
|
|
{
|
|
get { return this.clauses.Count; }
|
|
}
|
|
|
|
public bool IsReadOnly
|
|
{
|
|
get { return this.isReadOnly; }
|
|
}
|
|
|
|
public void Add(SecurityKeyIdentifierClause clause)
|
|
{
|
|
if (this.isReadOnly)
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ObjectIsReadOnly)));
|
|
}
|
|
if (clause == null)
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("clause"));
|
|
}
|
|
this.clauses.Add(clause);
|
|
}
|
|
|
|
public SecurityKey CreateKey()
|
|
{
|
|
for (int i = 0; i < this.Count; i++)
|
|
{
|
|
if (this[i].CanCreateKey)
|
|
{
|
|
return this[i].CreateKey();
|
|
}
|
|
}
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.KeyIdentifierCannotCreateKey)));
|
|
}
|
|
|
|
public TClause Find<TClause>() where TClause : SecurityKeyIdentifierClause
|
|
{
|
|
TClause clause;
|
|
if (!TryFind<TClause>(out clause))
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.GetString(SR.NoKeyIdentifierClauseFound, typeof(TClause)), "TClause"));
|
|
}
|
|
return clause;
|
|
}
|
|
|
|
public IEnumerator<SecurityKeyIdentifierClause> GetEnumerator()
|
|
{
|
|
return this.clauses.GetEnumerator();
|
|
}
|
|
|
|
public void MakeReadOnly()
|
|
{
|
|
this.isReadOnly = true;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
using (StringWriter writer = new StringWriter(CultureInfo.InvariantCulture))
|
|
{
|
|
writer.WriteLine("SecurityKeyIdentifier");
|
|
writer.WriteLine(" (");
|
|
writer.WriteLine(" IsReadOnly = {0},", this.IsReadOnly);
|
|
writer.WriteLine(" Count = {0}{1}", this.Count, this.Count > 0 ? "," : "");
|
|
for (int i = 0; i < this.Count; i++)
|
|
{
|
|
writer.WriteLine(" Clause[{0}] = {1}{2}", i, this[i], i < this.Count - 1 ? "," : "");
|
|
}
|
|
writer.WriteLine(" )");
|
|
return writer.ToString();
|
|
}
|
|
}
|
|
|
|
public bool TryFind<TClause>(out TClause clause) where TClause : SecurityKeyIdentifierClause
|
|
{
|
|
for (int i = 0; i < this.clauses.Count; i++)
|
|
{
|
|
TClause c = this.clauses[i] as TClause;
|
|
if (c != null)
|
|
{
|
|
clause = c;
|
|
return true;
|
|
}
|
|
}
|
|
clause = null;
|
|
return false;
|
|
}
|
|
|
|
IEnumerator IEnumerable.GetEnumerator()
|
|
{
|
|
return this.GetEnumerator();
|
|
}
|
|
}
|
|
}
|
|
|