mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
fix: lower log priority in SshjConfig
This commit is contained in:
parent
28394c4bbb
commit
0d35cfaa0b
|
@ -52,7 +52,7 @@ fun setUpBouncyCastleForSshj() {
|
||||||
runCatching { Class.forName("sun.security.jca.Providers") }
|
runCatching { Class.forName("sun.security.jca.Providers") }
|
||||||
Security.insertProviderAt(BouncyCastleProvider(), bcIndex + 1)
|
Security.insertProviderAt(BouncyCastleProvider(), bcIndex + 1)
|
||||||
}
|
}
|
||||||
logcat("setUpBouncyCastleForSshj") {
|
logcat("setUpBouncyCastleForSshj", priority = VERBOSE) {
|
||||||
"JCE providers: ${Security.getProviders().joinToString { "${it.name} (${it.version})" }}"
|
"JCE providers: ${Security.getProviders().joinToString { "${it.name} (${it.version})" }}"
|
||||||
}
|
}
|
||||||
// Prevent sshj from forwarding all cryptographic operations to BC.
|
// Prevent sshj from forwarding all cryptographic operations to BC.
|
||||||
|
|
Loading…
Reference in a new issue