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 GoogleFrontingTrustStore implements TrustStore { private final Context context; public GoogleFrontingTrustStore(Context context) { this.context = context.getApplicationContext(); } @Override public InputStream getKeyStoreInputStream() { return context.getResources().openRawResource(R.raw.censorship_fronting); } @Override public String getKeyStorePassword() { return "whisper"; } }