59 lines
1.3 KiB
C#
59 lines
1.3 KiB
C#
using System;
|
|
|
|
using Org.BouncyCastle.Asn1.X509;
|
|
using Org.BouncyCastle.Math;
|
|
using Org.BouncyCastle.Utilities;
|
|
using Org.BouncyCastle.X509.Store;
|
|
|
|
namespace Org.BouncyCastle.Cms
|
|
{
|
|
public class RecipientID
|
|
: X509CertStoreSelector
|
|
{
|
|
private byte[] keyIdentifier;
|
|
|
|
public byte[] KeyIdentifier
|
|
{
|
|
get { return Arrays.Clone(keyIdentifier); }
|
|
set { keyIdentifier = Arrays.Clone(value); }
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
int code = Arrays.GetHashCode(keyIdentifier)
|
|
^ Arrays.GetHashCode(this.SubjectKeyIdentifier);
|
|
|
|
BigInteger serialNumber = this.SerialNumber;
|
|
if (serialNumber != null)
|
|
{
|
|
code ^= serialNumber.GetHashCode();
|
|
}
|
|
|
|
string issuer = this.IssuerAsString;
|
|
if (issuer != null)
|
|
{
|
|
code ^= issuer.GetHashCode();
|
|
}
|
|
|
|
return code;
|
|
}
|
|
|
|
public override bool Equals(
|
|
object obj)
|
|
{
|
|
if (obj == this)
|
|
return true;
|
|
|
|
RecipientID id = obj as RecipientID;
|
|
|
|
if (id == null)
|
|
return false;
|
|
|
|
return Arrays.AreEqual(keyIdentifier, id.keyIdentifier)
|
|
&& Arrays.AreEqual(SubjectKeyIdentifier, id.SubjectKeyIdentifier)
|
|
&& Platform.Equals(SerialNumber, id.SerialNumber)
|
|
&& Platform.Equals(IssuerAsString, id.IssuerAsString);
|
|
}
|
|
}
|
|
}
|