This product is not supported for your selected Datadog site. ().

Metadata

ID: csharp-security/use-standard-crypto

Language: C#

Severity: Error

Category: Security

CWE: 327

Related CWEs:

Description

Implementing your hash/cryptographic algorithm may lead to errors and potential vulnerabilities. Always use proven algorithms that are available in the C# library ecosystem.

Non-Compliant Code Examples

public class CustomHash : HashAlgorithm {
}

Compliant Code Examples

public class MyClass {
    public void ComputeHash(byte[] data) {
        // Safe: using standard hash algorithm
        using (var sha256 = SHA256.Create()) {
            byte[] hash = sha256.ComputeHash(data);
        }
    }
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Security