RSA with no padding is insecure
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
ID: java-security/no-rsa-no-padding
Language: Java
Severity: Error
Category: Security
CWE: 780
Description
You should never use RSA without padding. RSA should always be used with some padding to prevent any weak encryption.
Learn More
Non-Compliant Code Examples
class MyClass {
public void test1() {
Cipher c = Cipher.getInstance("RSA/NONE/NoPadding");
c.init(Cipher.ENCRYPT_MODE, k, iv);
byte[] cipherText = c.doFinal(plainText);
}
public void test2() {
Cipher c = javax.crypto.Cipher.getInstance("RSA/NONE/NoPadding");
c.init(Cipher.ENCRYPT_MODE, k, iv);
byte[] cipherText = c.doFinal(plainText);
}
}
Compliant Code Examples
class MyClass {
public void test() {
Cipher c = Cipher.getInstance("RSA/ECB/OAEPWithMD5AndMGF1Padding");
c.init(Cipher.ENCRYPT_MODE, k, iv);
byte[] cipherText = c.doFinal(plainText);
}
}
Seamless integrations. Try Datadog Code Analysis