mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
b8f663b69c
1) Move all the crypto classes from securesms.crypto. 2) Move all the crypto storage from securesms.database.keys 3) Replace the old imported BC code with spongycastle.
8 lines
243 B
Java
8 lines
243 B
Java
package org.thoughtcrime.securesms;
|
|
|
|
import org.whispersystems.textsecure.crypto.MasterSecret;
|
|
|
|
public interface PassphraseRequiredActivity {
|
|
public void onMasterSecretCleared();
|
|
public void onNewMasterSecret(MasterSecret masterSecret);
|
|
}
|