aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2024-09-26 17:49:57 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2024-09-26 17:49:57 +0530
commitcb22561878d4358dba974c16ba9a05cc693d411a (patch)
treeec269d7de0ae035e95e66b5433120b58ae03aae4
parenta2ede93cf567cfe55bfd41f4e074ba3b4567e244 (diff)
Revert "refactor(app): inline pointless methods in `CryptoRepository`"
This reverts commit b05a6d411b98393abe3bdbdd4f673bbe49e30f88.
-rw-r--r--app/src/main/java/app/passwordstore/data/crypto/CryptoRepository.kt50
1 files changed, 33 insertions, 17 deletions
diff --git a/app/src/main/java/app/passwordstore/data/crypto/CryptoRepository.kt b/app/src/main/java/app/passwordstore/data/crypto/CryptoRepository.kt
index eb858006..cd54dac2 100644
--- a/app/src/main/java/app/passwordstore/data/crypto/CryptoRepository.kt
+++ b/app/src/main/java/app/passwordstore/data/crypto/CryptoRepository.kt
@@ -11,9 +11,11 @@ import app.passwordstore.crypto.PGPEncryptOptions
import app.passwordstore.crypto.PGPIdentifier
import app.passwordstore.crypto.PGPKeyManager
import app.passwordstore.crypto.PGPainlessCryptoHandler
+import app.passwordstore.crypto.errors.CryptoHandlerException
import app.passwordstore.injection.prefs.SettingsPreferences
import app.passwordstore.util.coroutines.DispatcherProvider
import app.passwordstore.util.settings.PreferenceKeys
+import com.github.michaelbull.result.Result
import com.github.michaelbull.result.filterValues
import com.github.michaelbull.result.map
import com.github.michaelbull.result.mapBoth
@@ -37,11 +39,6 @@ constructor(
}
}
- suspend fun isPasswordProtected(identifiers: List<PGPIdentifier>): Boolean {
- val keys = identifiers.map { pgpKeyManager.getKeyById(it) }.filterValues()
- return pgpCryptoHandler.isPassphraseProtected(keys)
- }
-
suspend fun decrypt(
password: String,
identities: List<PGPIdentifier>,
@@ -49,22 +46,41 @@ constructor(
out: ByteArrayOutputStream,
) =
withContext(dispatcherProvider.io()) {
- val keys = identities.map { id -> pgpKeyManager.getKeyById(id) }.filterValues()
- val decryptionOptions = PGPDecryptOptions.Builder().build()
- pgpCryptoHandler.decrypt(keys, password, message, out, decryptionOptions).map { out }
+ decryptPgp(password, identities, message, out).map { out }
}
+ suspend fun isPasswordProtected(identifiers: List<PGPIdentifier>): Boolean {
+ val keys = identifiers.map { pgpKeyManager.getKeyById(it) }.filterValues()
+ return pgpCryptoHandler.isPassphraseProtected(keys)
+ }
+
suspend fun encrypt(
identities: List<PGPIdentifier>,
content: ByteArrayInputStream,
out: ByteArrayOutputStream,
- ) =
- withContext(dispatcherProvider.io()) {
- val encryptionOptions =
- PGPEncryptOptions.Builder()
- .withAsciiArmor(settings.getBoolean(PreferenceKeys.ASCII_ARMOR, false))
- .build()
- val keys = identities.map { id -> pgpKeyManager.getKeyById(id) }.filterValues()
- pgpCryptoHandler.encrypt(keys, content, out, encryptionOptions).map { out }
- }
+ ) = withContext(dispatcherProvider.io()) { encryptPgp(identities, content, out).map { out } }
+
+ private suspend fun decryptPgp(
+ password: String,
+ identities: List<PGPIdentifier>,
+ message: ByteArrayInputStream,
+ out: ByteArrayOutputStream,
+ ): Result<Unit, CryptoHandlerException> {
+ val keys = identities.map { id -> pgpKeyManager.getKeyById(id) }.filterValues()
+ val decryptionOptions = PGPDecryptOptions.Builder().build()
+ return pgpCryptoHandler.decrypt(keys, password, message, out, decryptionOptions)
+ }
+
+ private suspend fun encryptPgp(
+ identities: List<PGPIdentifier>,
+ content: ByteArrayInputStream,
+ out: ByteArrayOutputStream,
+ ): Result<Unit, CryptoHandlerException> {
+ val encryptionOptions =
+ PGPEncryptOptions.Builder()
+ .withAsciiArmor(settings.getBoolean(PreferenceKeys.ASCII_ARMOR, false))
+ .build()
+ val keys = identities.map { id -> pgpKeyManager.getKeyById(id) }.filterValues()
+ return pgpCryptoHandler.encrypt(keys, content, out, encryptionOptions)
+ }
}