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

Commit 9f50629

Browse files
committed
Revert "chore: remove unnecessary CryptoHandlerModule"
This is used in #2170 so let's avoid the unnecessary conflict. This reverts commit f5bf450.
1 parent f5bf450 commit 9f50629

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
3+
* SPDX-License-Identifier: GPL-3.0-only
4+
*/
5+
6+
package app.passwordstore.injection.crypto
7+
8+
import app.passwordstore.crypto.PGPainlessCryptoHandler
9+
import dagger.Module
10+
import dagger.Provides
11+
import dagger.hilt.InstallIn
12+
import dagger.hilt.components.SingletonComponent
13+
14+
@Module
15+
@InstallIn(SingletonComponent::class)
16+
object CryptoHandlerModule {
17+
@Provides fun providePgpCryptoHandler() = PGPainlessCryptoHandler()
18+
}

0 commit comments

Comments
 (0)