rspec/rules/S3329/kotlin/how-to-fix-it/java-cryptography-extension.adoc
Loris S 96811524d7
Modify JVM Crypto rules: Change framework name (#3550)
* Modify JVM Crypto rules: Change title

* changed names

* Apply suggestions from code review

* fixed includes
2024-01-25 15:18:07 +01:00

87 lines
2.4 KiB
Plaintext

== How to fix it in Java Cryptography Extension
=== Code examples
==== Noncompliant code example
[source,kotlin,diff-id=1,diff-type=noncompliant]
----
import java.nio.charset.StandardCharsets
import java.security.InvalidAlgorithmParameterException
import java.security.InvalidKeyException
import java.security.NoSuchAlgorithmException
import javax.crypto.Cipher
import javax.crypto.NoSuchPaddingException
import javax.crypto.spec.GCMParameterSpec
import javax.crypto.spec.SecretKeySpec
fun encrypt(key: String, plainText: String) {
val randomBytes = "7cVgr5cbdCZVw5WY".toByteArray(StandardCharsets.UTF_8)
val iv = GCMParameterSpec(128, randomBytes)
val keySpec = SecretKeySpec(key.toByteArray(StandardCharsets.UTF_8), "AES")
try {
val cipher = Cipher.getInstance("AES/CBC/NoPadding")
cipher.init(Cipher.ENCRYPT_MODE, keySpec, iv) // Noncompliant
} catch (e: NoSuchAlgorithmException) {
// ...
} catch (e: InvalidKeyException) {
// ...
} catch (e: NoSuchPaddingException) {
// ...
} catch (e: InvalidAlgorithmParameterException) {
// ...
}
}
----
==== Compliant solution
:explicit_strong: java.security.SecureRandom
include::../../common/fix/explicit-fix.adoc[]
[source,kotlin,diff-id=1,diff-type=compliant]
----
import java.nio.charset.StandardCharsets
import java.security.SecureRandom
import java.security.InvalidAlgorithmParameterException
import java.security.InvalidKeyException
import java.security.NoSuchAlgorithmException
import javax.crypto.Cipher
import javax.crypto.NoSuchPaddingException
import javax.crypto.spec.GCMParameterSpec
import javax.crypto.spec.SecretKeySpec
fun encrypt(key: String, plainText: String) {
val random = SecureRandom();
val randomBytes = ByteArray(16);
random.nextBytes(randomBytes);
val iv = GCMParameterSpec(128, randomBytes)
val keySpec = SecretKeySpec(key.toByteArray(StandardCharsets.UTF_8), "AES")
try {
val cipher = Cipher.getInstance("AES/CBC/NoPadding")
cipher.init(Cipher.ENCRYPT_MODE, keySpec, iv)
} catch (e: NoSuchAlgorithmException) {
// ...
} catch (e: InvalidKeyException) {
// ...
} catch (e: NoSuchPaddingException) {
// ...
} catch (e: InvalidAlgorithmParameterException) {
// ...
}
}
----
=== How does this work?
include::../../common/fix/fix.adoc[]