Update documentation

This commit is contained in:
Travis CI (pmd-bot)
2018-05-21 11:36:09 +00:00
parent c95428d27a
commit edbc1f479a

View File

@ -5,12 +5,12 @@ permalink: pmd_rules_java_security.html
folder: pmd/rules/java folder: pmd/rules/java
sidebaractiveurl: /pmd_rules_java.html sidebaractiveurl: /pmd_rules_java.html
editmepath: ../pmd-java/src/main/resources/category/java/security.xml editmepath: ../pmd-java/src/main/resources/category/java/security.xml
keywords: Security, InsecureCryptoIv, HardCodedCryptoKey keywords: Security, HardCodedCryptoKey, InsecureCryptoIv
language: Java language: Java
--- ---
## HardCodedCryptoKey ## HardCodedCryptoKey
**Since:** PMD 6.3.0 **Since:** PMD 6.4.0
**Priority:** Medium (3) **Priority:** Medium (3)
@ -64,7 +64,6 @@ public class Foo {
void alsoBad() { void alsoBad() {
byte[] iv = "secret iv in here".getBytes(); byte[] iv = "secret iv in here".getBytes();
} }
} }
``` ```