![github-actions[bot]](/assets/img/avatar_default.png)
* Create rule S6293 * init rspec s6293 * improve description and add java subtask * fixes after review Co-authored-by: eric-therond-sonarsource <eric-therond-sonarsource@users.noreply.github.com> Co-authored-by: eric-therond-sonarsource <eric.therond@sonarsource.com>
26 lines
594 B
Plaintext
26 lines
594 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
A ``++CryptoObject++``is not used during authentication:
|
|
|
|
----
|
|
// ...
|
|
val biometricPrompt: BiometricPrompt = BiometricPrompt(activity, executor, callback)
|
|
// ...
|
|
biometricPrompt.authenticate(promptInfo) // Noncompliant
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
A ``++CryptoObject++`` is used during authentication:
|
|
|
|
----
|
|
// ...
|
|
val biometricPrompt: BiometricPrompt = BiometricPrompt(activity, executor, callback)
|
|
// ...
|
|
biometricPrompt.authenticate(promptInfo, BiometricPrompt.CryptoObject(cipher)) // Compliant
|
|
|
|
----
|
|
|
|
include::../see.adoc[] |