sslko
Version:
A simple tool to check SSL/TLS certificate information for a given domain.
13 lines (12 loc) • 569 B
TypeScript
/** Default port for HTTPS connections */
export declare const DEFAULT_PORT = 443;
/** Minimum and maximum port numbers for network connections */
export declare const MIN_PORT = 1;
/** Maximum port number for network connections */
export declare const MAX_PORT = 65535;
/** Default timeout for network operations in milliseconds */
export declare const DEFAULT_TIMEOUT = 5000;
/** Number of milliseconds in one day */
export declare const DAY_IN_MILLISECOND = 86400000;
/** Minimum RSA key size for secure connections */
export declare const MIN_RSA_KEY_SIZE = 2048;