Fixes after rebase

This commit is contained in:
Jorge Martín
2025-09-01 17:11:38 +02:00
parent 2fd9eaf17f
commit 8f09fd62d9
117 changed files with 310 additions and 295 deletions

View File

@@ -22,7 +22,7 @@ import javax.crypto.spec.GCMParameterSpec
*/
@ContributesBinding(AppScope::class)
@Inject
class AESEncryptionDecryptionService() : EncryptionDecryptionService {
class AESEncryptionDecryptionService : EncryptionDecryptionService {
override fun createEncryptionCipher(key: SecretKey): Cipher {
return Cipher.getInstance(AESEncryptionSpecs.CIPHER_TRANSFORMATION).apply {
init(Cipher.ENCRYPT_MODE, key)