mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
13 lines
298 B
Java
13 lines
298 B
Java
package org.briarproject.android.controller;
|
|
|
|
import org.briarproject.android.controller.handler.ResultHandler;
|
|
|
|
public interface SetupController {
|
|
|
|
float estimatePasswordStrength(String password);
|
|
|
|
void storeAuthorInfo(String nickname, String password,
|
|
ResultHandler<Void> resultHandler);
|
|
|
|
}
|