Refactor MessageEncrypter interface to use PublicKey and PrivateKey

This commit is contained in:
str4d
2016-04-21 00:32:58 +00:00
parent d545aaa892
commit 5c2f56549b
6 changed files with 83 additions and 49 deletions

View File

@@ -1,8 +1,10 @@
package org.briarproject.api.reporting;
import org.briarproject.api.crypto.PublicKey;
public interface DevConfig {
byte[] getDevPublicKey();
PublicKey getDevPublicKey();
String getDevOnionAddress();