You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
60 lines
1.5 KiB
using System;
|
|
|
|
using Org.BouncyCastle.Asn1;
|
|
using Org.BouncyCastle.Asn1.Cmp;
|
|
using Org.BouncyCastle.Asn1.Crmf;
|
|
using Org.BouncyCastle.Asn1.X509;
|
|
using Org.BouncyCastle.Math;
|
|
|
|
namespace Org.BouncyCastle.Cmp
|
|
{
|
|
public class RevocationDetailsBuilder
|
|
{
|
|
private readonly CertTemplateBuilder _templateBuilder = new CertTemplateBuilder();
|
|
|
|
public RevocationDetailsBuilder SetPublicKey(SubjectPublicKeyInfo publicKey)
|
|
{
|
|
if (publicKey != null)
|
|
{
|
|
_templateBuilder.SetPublicKey(publicKey);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
public RevocationDetailsBuilder SetIssuer(X509Name issuer)
|
|
{
|
|
if (issuer != null)
|
|
{
|
|
_templateBuilder.SetIssuer(issuer);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
public RevocationDetailsBuilder SetSerialNumber(BigInteger serialNumber)
|
|
{
|
|
if (serialNumber != null)
|
|
{
|
|
_templateBuilder.SetSerialNumber(new DerInteger(serialNumber));
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
public RevocationDetailsBuilder SetSubject(X509Name subject)
|
|
{
|
|
if (subject != null)
|
|
{
|
|
_templateBuilder.SetSubject(subject);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
public RevocationDetails Build()
|
|
{
|
|
return new RevocationDetails(new RevDetails(_templateBuilder.Build()));
|
|
}
|
|
}
|
|
}
|