Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Revert "chore: remove unnecessary CryptoHandlerModule"
Browse files Browse the repository at this point in the history
This is used in #2170 so let's avoid the unnecessary conflict.

This reverts commit f5bf450.
  • Loading branch information
msfjarvis committed Oct 10, 2022
1 parent f5bf450 commit 9f50629
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
* SPDX-License-Identifier: GPL-3.0-only
*/

package app.passwordstore.injection.crypto

import app.passwordstore.crypto.PGPainlessCryptoHandler
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent

@Module
@InstallIn(SingletonComponent::class)
object CryptoHandlerModule {
@Provides fun providePgpCryptoHandler() = PGPainlessCryptoHandler()
}

0 comments on commit 9f50629

Please sign in to comment.