src/pqc_lint/__init__.py
489 B · 19 lines · python Raw
1 """PQC Lint — find classical cryptography in source code and suggest PQC replacements."""
2
3 from pqc_lint.findings import Finding, ScanReport, Severity
4 from pqc_lint.rules import RULES, Rule, get_rules_for_language
5 from pqc_lint.scanner import Scanner
6 from pqc_lint.suggestions import suggest_replacement
7
8 __version__ = "0.1.0"
9 __all__ = [
10 "Finding",
11 "Severity",
12 "ScanReport",
13 "Rule",
14 "RULES",
15 "get_rules_for_language",
16 "Scanner",
17 "suggest_replacement",
18 ]
19