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.
47 lines
1.4 KiB
47 lines
1.4 KiB
8 months ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cmp;
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Cms;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.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;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|