You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
423 B

import { type X509Certificate } from '@peculiar/x509';
/**
* A method to pull a CRL from a certificate and compare its serial number to the list of revoked
* certificate serial numbers within the CRL.
*
* CRL certificate structure referenced from https://tools.ietf.org/html/rfc5280#page-117
*/
export declare function isCertRevoked(cert: X509Certificate): Promise<boolean>;
//# sourceMappingURL=isCertRevoked.d.ts.map