[DIFF-INFORMED] C++: InsufficientKeySize

This commit is contained in:
Nora Dimitrijević
2025-07-16 10:32:51 +02:00
parent c0c96eaf5b
commit ec85e55069

View File

@@ -44,6 +44,12 @@ module KeyStrengthFlowConfig implements DataFlow::ConfigSig {
exists(getMinimumKeyStrength(name, param)) exists(getMinimumKeyStrength(name, param))
) )
} }
predicate observeDiffInformedIncrementalMode() { any() }
Location getASelectedSinkLocation(DataFlow::Node sink) {
exists(FunctionCall fc | result = fc.getLocation() | sink.asExpr() = fc.getArgument(_))
}
} }
module KeyStrengthFlow = DataFlow::Global<KeyStrengthFlowConfig>; module KeyStrengthFlow = DataFlow::Global<KeyStrengthFlowConfig>;