Encrypt and save crash reports, send them the next time TorPlugin start

Will currently fail at runtime; requires a public key and a server onion.
This commit is contained in:
str4d
2016-03-31 11:11:55 +00:00
parent 28086cd359
commit d545aaa892
18 changed files with 342 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
package org.briarproject.api.reporting;
public interface DevConfig {
byte[] getDevPublicKey();
String getDevOnionAddress();
int getDevReportPort();
}