Skip to content

Commit 66232a8

Browse files
committed
C#: Fix typo.
1 parent a5b7e2a commit 66232a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/ql/test/query-tests/Security Features/CWE-321/HardcodedSymmetricEncryptionKey/HardcodedSymmetricEncryptionKey.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static void Main(string[] args)
4646
// GOOD (this function hashes password)
4747
var de = DecryptWithPassword(ct, c, iv);
4848

49-
// BAD: harc-coded password passed to Decrypt
49+
// BAD: hard-coded password passed to Decrypt
5050
var de1 = Decrypt(ct, c, iv);
5151

5252
// BAD [NOT DETECTED]

0 commit comments

Comments
 (0)