add all
This commit is contained in:
62
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/cms/RecipientId.cs
vendored
Normal file
62
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/cms/RecipientId.cs
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities;
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.X509.Store;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.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();
|
||||
}
|
||||
|
||||
X509Name issuer = this.Issuer;
|
||||
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)
|
||||
&& Org.BouncyCastle.Utilities.Platform.Equals(SerialNumber, id.SerialNumber)
|
||||
&& IssuersMatch(Issuer, id.Issuer);
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user