UNPKG

@reclaimprotocol/tls

Version:

TLS 1.2/1.3 for any JavaScript Environment

16 lines (15 loc) 450 B
import type { X509Certificate } from './x509.ts'; export * from './x509.ts'; export * from './tls.ts'; export * from './crypto.ts'; export * from './logger.ts'; declare global { const TLS_ADDITIONAL_ROOT_CA_LIST: string[]; /** * Store fetched intermediate certificates typically fetched via * the AIA extension here to avoid refetching */ const TLS_INTERMEDIATE_CA_CACHE: { [url: string]: X509Certificate; }; }