Verifies whether this certificate has been revoked or not.
Namespace: LLCryptoLib.Security.CertificatesAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public bool VerifyRevocation(
byte[] crl
) |
Visual Basic |
---|
Public Function VerifyRevocation ( _
crl As Byte() _
) As Boolean |
Visual C++ |
---|
public:
bool VerifyRevocation(
array<unsigned char>^ crl
) |
Parameters
- crl
- Type: array<System..::..Byte>[]()[][]
The encoded CRL to check against.
Return Value
true if the certificate is not on the CRL and therefore valid, or
false if the certificate is on the CRL and therefore revoked.
Exceptions
See Also