Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b218a87

Browse files
committed
C#: Override tags.
1 parent ae20e9a commit b218a87

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

csharp/ql/src/semmle/code/csharp/security/cryptography/EncryptionKeyDataFlow.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module EncryptionKeyDataFlow {
3636
exists(SymmetricAlgorithm ag | asExpr() = ag.getKeyProperty().getAnAssignedValue())
3737
}
3838

39-
string getDescription() { result = "Key property assignment" }
39+
override string getDescription() { result = "Key property assignment" }
4040
}
4141

4242
/**
@@ -49,7 +49,7 @@ module EncryptionKeyDataFlow {
4949
)
5050
}
5151

52-
string getDescription() { result = "Encryptor(rgbKey, IV)" }
52+
override string getDescription() { result = "Encryptor(rgbKey, IV)" }
5353
}
5454

5555
/**
@@ -62,7 +62,7 @@ module EncryptionKeyDataFlow {
6262
)
6363
}
6464

65-
string getDescription() { result = "Decryptor(rgbKey, IV)" }
65+
override string getDescription() { result = "Decryptor(rgbKey, IV)" }
6666
}
6767

6868
/**

0 commit comments

Comments
 (0)