X509CRL2VerifySignature Method

Verifies whether the specified certificate is an issuer of this CRL by verifying CRL signature against specified certificate's public key.

Definition

Namespace: SysadminsLV.PKI.Cryptography.X509Certificates
Assembly: SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 4.0.1
C#
public bool VerifySignature(
	X509Certificate2 issuer,
	bool strict = false
)

Parameters

issuer  X509Certificate2
A potential issuer's certificate.
strict  Boolean  (Optional)
Specifies whether to perform CRL issuer and certificate's subject name binary comparison. This parameter is not implemented.

Return Value

Boolean
True if the specified certificate is signed this CRL. Otherwise False.

Exceptions

CryptographicException The data is invalid.

See Also