/** * @fileoverview OWASP A02:2021 - Cryptographic Failures Rule * @module @nahisaho/musubix-security/rules/owasp/a02-cryptographic-failures * @trace TSK-RULE-003 * * Detects: * - Weak hash algorithms (MD5, SHA1) * - Weak encryption algorithms (DES, RC4, ECB mode) * - Hardcoded cryptographic keys * - Insecure random number generation * - Missing TLS/SSL or weak configuration */ import type { SecurityRule } from '../types.js'; /** * OWASP A02 - Cryptographic Failures */ export declare const owaspA02CryptographicFailures: SecurityRule; export default owaspA02CryptographicFailures; //# sourceMappingURL=a02-cryptographic-failures.d.ts.map