mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
Fix QL formatting
This commit is contained in:
@@ -134,12 +134,14 @@ module HardcodedCryptographicValue {
|
||||
/**
|
||||
* An externally modeled barrier for hard-coded cryptographic value vulnerabilities.
|
||||
*
|
||||
* Note that a barrier will block flow to all hard-coded cryptographic value
|
||||
* sinks, regardless of the `kind` that is specified. For example a barrier of
|
||||
* kind `credentials-key` will block flow to a sink of kind `credentials-iv`.
|
||||
* Note that a barrier will block flow to all hard-coded cryptographic value
|
||||
* sinks, regardless of the `kind` that is specified. For example a barrier of
|
||||
* kind `credentials-key` will block flow to a sink of kind `credentials-iv`.
|
||||
*/
|
||||
private class ModelsAsDataBarrier extends Barrier {
|
||||
ModelsAsDataBarrier() { exists(CryptographicValueKind kind | barrierNode(this, "credentials-" + kind)) }
|
||||
ModelsAsDataBarrier() {
|
||||
exists(CryptographicValueKind kind | barrierNode(this, "credentials-" + kind))
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user