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
)
Public Function VerifySignature (
issuer As X509Certificate2,
Optional strict As Boolean = false
) As Boolean
public:
bool VerifySignature(
X509Certificate2^ issuer,
bool strict = false
)
member VerifySignature :
issuer : X509Certificate2 *
?strict : bool
(* Defaults:
let _strict = defaultArg strict false
*)
-> bool
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:
BooleanTrue if the specified certificate is signed this CRL. Otherwise
False.
Exceptions See Also