Click or drag to resize

X509CRL2VerifySignature Method

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

Namespace:  System.Security.Cryptography.X509Certificates
Assembly:  SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax
public bool VerifySignature(
	X509Certificate2 issuer,
	bool strict = false
)

Parameters

issuer
Type: System.Security.Cryptography.X509CertificatesX509Certificate2
A potential issuer's certificate.
strict (Optional)
Type: SystemBoolean
Specifies whether to perform CRL issuer and certificate's subject name binary comparison. This parameter is not implemented.

Return Value

Type: Boolean
True if the specified certificate is signed this CRL. Otherwise False.
Exceptions
ExceptionCondition
CryptographicException The data is invalid.
UninitializedObjectExceptionAn object is not initialized.
See Also