File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
rust/ql/lib/codeql/rust/security Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -134,12 +134,14 @@ module HardcodedCryptographicValue {
134134 /**
135135 * An externally modeled barrier for hard-coded cryptographic value vulnerabilities.
136136 *
137- * Note that a barrier will block flow to all hard-coded cryptographic value
138- * sinks, regardless of the `kind` that is specified. For example a barrier of
139- * kind `credentials-key` will block flow to a sink of kind `credentials-iv`.
137+ * Note that a barrier will block flow to all hard-coded cryptographic value
138+ * sinks, regardless of the `kind` that is specified. For example a barrier of
139+ * kind `credentials-key` will block flow to a sink of kind `credentials-iv`.
140140 */
141141 private class ModelsAsDataBarrier extends Barrier {
142- ModelsAsDataBarrier ( ) { exists ( CryptographicValueKind kind | barrierNode ( this , "credentials-" + kind ) ) }
142+ ModelsAsDataBarrier ( ) {
143+ exists ( CryptographicValueKind kind | barrierNode ( this , "credentials-" + kind ) )
144+ }
143145 }
144146
145147 /**
You can’t perform that action at this time.
0 commit comments