Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix S4790 FN: Support raw string literals #6298

Closed
gregory-paidis-sonarsource opened this issue Nov 7, 2022 · 0 comments · Fixed by #6364
Closed

Fix S4790 FN: Support raw string literals #6298

gregory-paidis-sonarsource opened this issue Nov 7, 2022 · 0 comments · Fixed by #6364
Assignees
Labels
Type: False Negative Rule is NOT triggered when it should be.
Milestone

Comments

@gregory-paidis-sonarsource
Copy link
Contributor

Description

FN for S4790 (CreatingHashAlgorithms).

Using C#11 raw string literals, the rule is not raising an issue.

Repro steps

string part1 = """System.Security.Cryptography""";
string part2 = """SHA1""";

void RawStringLiterals(byte[] temp)
{
    using var SHA1HashAlgorithmWithNamespaceInterpolatedRawStringLiteral = HashAlgorithm.Create($$"""{{part1}}.{{part2}}"""); // FN
}

Expected behavior

The rule should raise an issue.

Actual behavior

The rule does not raise an issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: False Negative Rule is NOT triggered when it should be.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants