init commit

This commit is contained in:
2025-10-09 09:57:24 +09:00
commit 4d551bd74f
6636 changed files with 1218703 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
using System;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Ocsp;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Security;
using Org.BouncyCastle.X509;
namespace Org.BouncyCastle.Ocsp;
public class RespID
{
internal readonly ResponderID id;
public RespID(ResponderID id)
{
this.id = id;
}
public RespID(X509Name name)
{
id = new ResponderID(name);
}
public RespID(AsymmetricKeyParameter publicKey)
{
try
{
SubjectPublicKeyInfo subjectPublicKeyInfo = SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo(publicKey);
byte[] str = DigestUtilities.CalculateDigest("SHA1", subjectPublicKeyInfo.PublicKeyData.GetBytes());
id = new ResponderID(new DerOctetString(str));
}
catch (Exception ex)
{
throw new OcspException("problem creating ID: " + ex, ex);
}
}
public ResponderID ToAsn1Object()
{
return id;
}
public override bool Equals(object obj)
{
if (obj == this)
{
return true;
}
if (!(obj is RespID respID))
{
return false;
}
return id.Equals(respID.id);
}
public override int GetHashCode()
{
return id.GetHashCode();
}
}