We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 646ea55 commit 010488cCopy full SHA for 010488c
python/ql/src/semmle/crypto/Crypto.qll
@@ -1,5 +1,7 @@
1
/**
2
- * Provides classes for modeling cryptographic libraries.
+ * Provides classes modeling cryptographic algorithms, separated into strong and weak variants.
3
+ *
4
+ * The classification into strong and weak are based on Wikipedia, OWASP and google (2017).
5
*/
6
7
@@ -110,7 +112,7 @@ abstract class CryptographicAlgorithm extends TCryptographicAlgorithm {
110
112
string toString() { result = getName() }
111
113
114
- * Gets the name of this algorithm.
115
+ * Gets the normalized name of this algorithm (upper-case, no spaces, dashes or underscores).
116
117
abstract string getName();
118
0 commit comments