blob: 68fd9f12a0ad51abb28b881cdd041cf16a9536d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using System.Collections;
using System.IO;
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Asn1.Ocsp;
using Org.BouncyCastle.Asn1.X509;
using Org.BouncyCastle.X509;
namespace Org.BouncyCastle.Ocsp
{
public class Req
: X509ExtensionBase
{
private Request req;
public Req(
Request req)
{
this.req = req;
}
public CertificateID GetCertID()
{
return new CertificateID(req.ReqCert);
}
public X509Extensions SingleRequestExtensions
{
get { return req.SingleRequestExtensions; }
}
protected override X509Extensions GetX509Extensions()
{
return SingleRequestExtensions;
}
}
}
|