Setup alternate domain front.

In preparation for Google shutting down domain fronting.

Closes #7584
This commit is contained in:
Greyson Parrelli
2018-03-27 14:22:56 -07:00
committed by Moxie Marlinspike
parent ea374735e1
commit a573ab7c76
3 changed files with 20 additions and 107 deletions

View File

@@ -0,0 +1,29 @@
package org.thoughtcrime.securesms.push;
import android.content.Context;
import org.thoughtcrime.securesms.R;
import org.whispersystems.signalservice.api.push.TrustStore;
import java.io.InputStream;
public class DomainFrontingTrustStore implements TrustStore {
private final Context context;
public DomainFrontingTrustStore(Context context) {
this.context = context.getApplicationContext();
}
@Override
public InputStream getKeyStoreInputStream() {
return context.getResources().openRawResource(R.raw.censorship_fronting);
}
@Override
public String getKeyStorePassword() {
return "whisper";
}
}