Files
briar/briar-android/src/org/briarproject/android/controller/ConfigController.java
Ernir Erlingsson eaa393a7ed added a cache to the IdentityManager, changed its signature, modified when and where the author is stored
made the author creation single-threaded again in the LifecycleManager, removed redundant code
2016-11-01 12:51:49 +01:00

15 lines
261 B
Java

package org.briarproject.android.controller;
import android.content.Context;
public interface ConfigController {
String getEncryptedDatabaseKey();
void storeEncryptedDatabaseKey(String hex);
void deleteAccount(Context ctx);
boolean accountExists();
}