/** * PostgreSQL Security - Encryption and SSL Tools * * Tools for SSL/TLS monitoring, encryption status, and password validation. * 3 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; /** * Get SSL/TLS connection status */ export declare function createSecuritySSLStatusTool(adapter: PostgresAdapter): ToolDefinition; /** * Check encryption and certificate configuration */ export declare function createSecurityEncryptionStatusTool(adapter: PostgresAdapter): ToolDefinition; /** * Validate password strength (pure JS, no database) */ export declare function createSecurityPasswordValidateTool(_adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=encryption.d.ts.map