You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java/ql/src/experimental/Security/CWE/CWE-326/InsufficientKeySize.ql
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ class KeyPairGeneratorInitConfiguration extends TaintTracking::Configuration {
74
74
}
75
75
}
76
76
77
-
/** Holds if a symmetric `KeyGenerator` is initialized with an insufficient key size. */
77
+
/** Holds if a symmetric `KeyGenerator` implementing encryption algorithm `type` and initialized by `ma` uses an insufficient key size. `msg` provides a human-readable description of the problem. */
/** Holds if an asymmetric `KeyPairGenerator` is initialized with an insufficient key size. */
97
+
/** Holds if an asymmetric `KeyPairGenerator` implementing encryption algorithm `type` and initialized by `ma` uses an insufficient key size. `msg` provides a human-readable description of the problem. */
msg="Key size should be at least 2048 bits for "+type+" encryption."
112
112
}
113
113
114
-
/** Holds if a DSA `KeyPairGenerator` is initialized with an insufficient key size. */
114
+
/** Holds if a DSA `KeyPairGenerator` initialized by `ma` uses an insufficient key size. `msg` provides a human-readable description of the problem. */
/** Holds if a RSA `KeyPairGenerator` is initialized with an insufficient key size. */
119
+
/** Holds if a RSA `KeyPairGenerator` initialized by `ma` uses an insufficient key size. `msg` provides a human-readable description of the problem. */
/** Holds if an EC `KeyPairGenerator` is initialized with an insufficient key size. */
124
+
/** Holds if an EC `KeyPairGenerator` initialized by `ma` uses an insufficient key size. `msg` provides a human-readable description of the problem. */
0 commit comments