Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hacking an instagram account password #349

Open
NyashaMtenge33 opened this issue Jul 16, 2024 · 3 comments
Open

Hacking an instagram account password #349

NyashaMtenge33 opened this issue Jul 16, 2024 · 3 comments

Comments

@NyashaMtenge33
Copy link

No description provided.

@thorapan
Copy link

package com.x8bit.bitwarden.data.tools.generator.datasource.disk.di

import android.app.Application
import android.content.SharedPreferences
import androidx.room.Room
import com.x8bit.bitwarden.data.platform.datasource.di.UnencryptedPreferences
import com.x8bit.bitwarden.data.tools.generator.datasource.disk.GeneratorDiskSource
import com.x8bit.bitwarden.data.tools.generator.datasource.disk.GeneratorDiskSourceImpl
import com.x8bit.bitwarden.data.tools.generator.datasource.disk.PasswordHistoryDiskSource
import com.x8bit.bitwarden.data.tools.generator.datasource.disk.PasswordHistoryDiskSourceImpl
import com.x8bit.bitwarden.data.tools.generator.datasource.disk.dao.PasswordHistoryDao
import com.x8bit.bitwarden.data.tools.generator.datasource.disk.database.PasswordHistoryDatabase
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent
import kotlinx.serialization.json.Json
import javax.inject.Singleton

/**

  • Provides persistence-related dependencies for the generator package.
    */
    @module
    @Installin(SingletonComponent::class)
    object GeneratorDiskModule {

    @provides
    @singleton
    fun provideGeneratorDiskSource(
    @UnencryptedPreferences sharedPreferences: SharedPreferences,
    json: Json,
    ): GeneratorDiskSource =
    GeneratorDiskSourceImpl(
    sharedPreferences = sharedPreferences,
    json = json,
    )

    @provides
    @singleton
    fun providePasswordHistoryDiskSource(
    passwordHistoryDao: PasswordHistoryDao,
    ): PasswordHistoryDiskSource = PasswordHistoryDiskSourceImpl(
    passwordHistoryDao = passwordHistoryDao,
    )

    @provides
    @singleton
    fun providePasswordHistoryDatabase(app: Application): PasswordHistoryDatabase {
    return Room
    .databaseBuilder(
    context = app,
    klass = PasswordHistoryDatabase::class.java,
    name = "passcode_history_database",
    )
    .build()
    }

    @provides
    @singleton
    fun providePasswordHistoryDao(database: PasswordHistoryDatabase): PasswordHistoryDao {
    return database.passwordHistoryDao()
    }
    }

@Ranjitchouhan
Copy link

Mujhe password heck karna hai

@Ranjitchouhan
Copy link

Pass Heck karna hai

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants