Do not use NullCipher
Constructing `new NullCipher()` or `Cipher.getInstance("Null")` performs no encryption.
#Metadata
#Why it matters
NullCipher returns plaintext unchanged, providing no confidentiality and often disguising an intentional bypass of crypto.
#Remediation
Use an authenticated cipher such as `AES/GCM/NoPadding` with a properly managed key.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/java/java.security.null-cipher.rule.yaml.