mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00: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.
9 lines
243 B
Java
9 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);
|
|
}
|