blob: 8e1158390bb2e747d74361b28c388510440e3a7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package eu.siacs.conversations.crypto;
import org.openintents.openpgp.OpenPgpError;
import android.app.PendingIntent;
public interface OnPgpEngineResult {
public void success();
public void error(OpenPgpError openPgpError);
public void userInputRequried(PendingIntent pi);
}
|