このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください

Metadata

ID: csharp-security/use-standard-crypto

Language: C#

Severity: Error

Category: Security

CWE: 327

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 {
}