diff --git a/ql/src/experimental/CWE-327/BrokenCryptoAlgorithmCustomizations.qll b/ql/src/experimental/CWE-327/BrokenCryptoAlgorithmCustomizations.qll index 5866b12d076..c455f3b40c5 100644 --- a/ql/src/experimental/CWE-327/BrokenCryptoAlgorithmCustomizations.qll +++ b/ql/src/experimental/CWE-327/BrokenCryptoAlgorithmCustomizations.qll @@ -43,6 +43,9 @@ module BrokenCryptoAlgorithm { } } + /** + * A configuration depicting taint flow from sensitive information to weak cryptographic algorithms. + */ class Configuration extends TaintTracking::Configuration { Configuration() { this = "BrokenCryptoAlgorithm" } diff --git a/ql/src/experimental/CWE-327/CryptoLibraries.qll b/ql/src/experimental/CWE-327/CryptoLibraries.qll index deca29c96ec..98b1a261c8f 100644 --- a/ql/src/experimental/CWE-327/CryptoLibraries.qll +++ b/ql/src/experimental/CWE-327/CryptoLibraries.qll @@ -1,5 +1,5 @@ /** - * Provides classes for modelling cryptographic libraries. + * Provides classes for modeling cryptographic libraries. */ import go