rspec/rules/S4423/kotlin/how-to-fix-it/java-cryptographic-extension.adoc
Loris S 1a84c758e1
Modify S4423: Learn-As-You-Code Migration (#2097)
Co-authored-by: hendrik-buchwald-sonarsource <64110887+hendrik-buchwald-sonarsource@users.noreply.github.com>
2023-06-20 15:36:01 +00:00

40 lines
787 B
Plaintext

== How to fix it in Java Cryptographic Extension
=== Code examples
==== Noncompliant code example
[source,kotlin,diff-id=1,diff-type=noncompliant]
----
import javax.net.ssl.SSLContext;
import java.security.NoSuchAlgorithmException;
fun main(args: Array<String>) {
try {
SSLContext.getInstance("TLSv1.1"); // Noncompliant
} catch (e: NoSuchAlgorithmException) {
// ...
}
}
----
==== Compliant solution
[source,kotlin,diff-id=1,diff-type=compliant]
----
import javax.net.ssl.SSLContext;
import java.security.NoSuchAlgorithmException;
fun main(args: Array<String>) {
try {
SSLContext.getInstance("TLSv1.2");
} catch (e: NoSuchAlgorithmException) {
// ...
}
}
----
=== How does this work?
include::../../common/fix/fix.adoc[]