We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c96ea commit ec85e55Copy full SHA for ec85e55
cpp/ql/src/Security/CWE/CWE-326/InsufficientKeySize.ql
@@ -44,6 +44,12 @@ module KeyStrengthFlowConfig implements DataFlow::ConfigSig {
44
exists(getMinimumKeyStrength(name, param))
45
)
46
}
47
+
48
+ predicate observeDiffInformedIncrementalMode() { any() }
49
50
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
51
+ exists(FunctionCall fc | result = fc.getLocation() | sink.asExpr() = fc.getArgument(_))
52
+ }
53
54
55
module KeyStrengthFlow = DataFlow::Global<KeyStrengthFlowConfig>;
0 commit comments