e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
54 lines
1.6 KiB
C#
54 lines
1.6 KiB
C#
//------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------
|
|
|
|
namespace System.IdentityModel.Tokens
|
|
{
|
|
using System.Globalization;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
public class X509ThumbprintKeyIdentifierClause : BinaryKeyIdentifierClause
|
|
{
|
|
public X509ThumbprintKeyIdentifierClause(X509Certificate2 certificate)
|
|
: this(GetHash(certificate), false)
|
|
{
|
|
}
|
|
|
|
public X509ThumbprintKeyIdentifierClause(byte[] thumbprint)
|
|
: this(thumbprint, true)
|
|
{
|
|
}
|
|
|
|
internal X509ThumbprintKeyIdentifierClause(byte[] thumbprint, bool cloneBuffer)
|
|
: base(null, thumbprint, cloneBuffer)
|
|
{
|
|
}
|
|
|
|
static byte[] GetHash(X509Certificate2 certificate)
|
|
{
|
|
if (certificate == null)
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("certificate");
|
|
|
|
return certificate.GetCertHash();
|
|
}
|
|
|
|
public byte[] GetX509Thumbprint()
|
|
{
|
|
return GetBuffer();
|
|
}
|
|
|
|
public bool Matches(X509Certificate2 certificate)
|
|
{
|
|
if (certificate == null)
|
|
return false;
|
|
|
|
return Matches(GetHash(certificate));
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format(CultureInfo.InvariantCulture, "X509ThumbprintKeyIdentifierClause(Hash = 0x{0})", ToHexString());
|
|
}
|
|
}
|
|
}
|