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.
42 lines
1.2 KiB
42 lines
1.2 KiB
using System;
|
|
|
|
using Org.BouncyCastle.Asn1.Cmp;
|
|
using Org.BouncyCastle.Cms;
|
|
|
|
namespace Org.BouncyCastle.Cmp
|
|
{
|
|
public class CertificateConfirmationContent
|
|
{
|
|
private readonly DefaultDigestAlgorithmIdentifierFinder digestAlgFinder;
|
|
private readonly CertConfirmContent content;
|
|
|
|
public CertificateConfirmationContent(CertConfirmContent content)
|
|
{
|
|
this.content = content;
|
|
}
|
|
|
|
public CertificateConfirmationContent(CertConfirmContent content,
|
|
DefaultDigestAlgorithmIdentifierFinder digestAlgFinder)
|
|
{
|
|
this.content = content;
|
|
this.digestAlgFinder = digestAlgFinder;
|
|
}
|
|
|
|
public CertConfirmContent ToAsn1Structure()
|
|
{
|
|
return content;
|
|
}
|
|
|
|
public CertificateStatus[] GetStatusMessages()
|
|
{
|
|
CertStatus[] statusArray = content.ToCertStatusArray();
|
|
CertificateStatus[] ret = new CertificateStatus[statusArray.Length];
|
|
for (int i = 0; i != ret.Length; i++)
|
|
{
|
|
ret[i] = new CertificateStatus(digestAlgFinder, statusArray[i]);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
|