Fix QL formatting

This commit is contained in:
Owen Mansel-Chan
2026-03-25 10:05:04 +00:00
parent bedfe1e755
commit f25d7456da

View File

@@ -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))
}
}
/**