PdfSignature
OCSPResponseGenerateHandler Delegate
|
The handler which generate OCSP response.
Namespace:
Spire.Pdf.Security
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public delegate byte[] OCSPResponseGenerateHandler(
X509Certificate2 checkedCertificate,
X509Certificate2 issuerCertificate
)
Public Delegate Function OCSPResponseGenerateHandler (
checkedCertificate As X509Certificate2,
issuerCertificate As X509Certificate2
) As Byte()
public delegate array<unsigned char>^ OCSPResponseGenerateHandler(
X509Certificate2^ checkedCertificate,
X509Certificate2^ issuerCertificate
)
type OCSPResponseGenerateHandler =
delegate of
checkedCertificate : X509Certificate2 *
issuerCertificate : X509Certificate2 -> byte[]
Parameters
-
checkedCertificate
-
Type:
System.Security.Cryptography.X509Certificates
X509Certificate2
certificate to checked
-
issuerCertificate
-
Type:
System.Security.Cryptography.X509Certificates
X509Certificate2
certificate of the issuer
Return Value
Type:
Byte
OCSP response which must conform to RFC 2560
See Also