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 50caf7d commit 394c4a9Copy full SHA for 394c4a9
java/ql/lib/semmle/code/java/security/CleartextStorageSharedPrefsQuery.qll
@@ -77,14 +77,3 @@ private class SharedPreferencesFlowConfig extends DataFlow::Configuration {
77
sharedPreferencesStore(sink, _)
78
}
79
80
-
81
-/**
82
- * Method call for encrypting sensitive information. As there are various implementations of
83
- * encryption (reversible and non-reversible) from both JDK and third parties, this class simply
84
- * checks method name to take a best guess to reduce false positives.
85
- */
86
-private class EncryptedSensitiveMethodAccess extends MethodAccess {
87
- EncryptedSensitiveMethodAccess() {
88
- this.getMethod().getName().toLowerCase().matches(["%encrypt%", "%hash%"])
89
- }
90
-}
0 commit comments