aboutsummaryrefslogtreecommitdiff
path: root/ssh
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-05-05 00:28:59 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2023-05-05 00:30:54 +0530
commita188ad3f724f2072020ad3985de9db30b0bf3e83 (patch)
tree1165e28a14d326515b87faa5ed9bde4e604487b0 /ssh
parentdef9786736cd1ae7ac887c696a0cb2aaf36aa79a (diff)
chore: remove redundant suppressions
Diffstat (limited to 'ssh')
-rw-r--r--ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt2
1 files changed, 0 insertions, 2 deletions
diff --git a/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt b/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt
index 86ce478e..d192ea21 100644
--- a/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt
+++ b/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt
@@ -17,7 +17,6 @@ internal object SSHKeyUtils {
Regex("END .* PRIVATE KEY").containsMatchIn(lines.last())
}
- @Suppress("BlockingMethodInNonBlockingContext")
suspend fun getOrCreateWrappedPrivateKeyFile(
context: Context,
requiresAuthentication: Boolean,
@@ -36,7 +35,6 @@ internal object SSHKeyUtils {
}
}
- @Suppress("BlockingMethodInNonBlockingContext")
private suspend fun getOrCreateWrappingMasterKey(
context: Context,
requireAuthentication: Boolean