mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
28 lines
639 B
Java
28 lines
639 B
Java
package org.thoughtcrime.securesms.push;
|
|
|
|
import android.content.Context;
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
import org.whispersystems.textsecure.push.PushServiceSocket;
|
|
|
|
import java.io.InputStream;
|
|
|
|
public class TextSecurePushTrustStore implements PushServiceSocket.TrustStore {
|
|
|
|
private final Context context;
|
|
|
|
public TextSecurePushTrustStore(Context context) {
|
|
this.context = context.getApplicationContext();
|
|
}
|
|
|
|
@Override
|
|
public InputStream getKeyStoreInputStream() {
|
|
return context.getResources().openRawResource(R.raw.whisper);
|
|
}
|
|
|
|
@Override
|
|
public String getKeyStorePassword() {
|
|
return "whisper";
|
|
}
|
|
}
|