mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-25 18:14:27 +01:00
19 lines
400 B
Java
19 lines
400 B
Java
package cli;
|
|
|
|
import org.whispersystems.textsecure.api.push.TrustStore;
|
|
|
|
import java.io.InputStream;
|
|
|
|
public class WhisperTrustStore implements TrustStore {
|
|
|
|
@Override
|
|
public InputStream getKeyStoreInputStream() {
|
|
return cli.WhisperTrustStore.class.getResourceAsStream("whisper.store");
|
|
}
|
|
|
|
@Override
|
|
public String getKeyStorePassword() {
|
|
return "whisper";
|
|
}
|
|
}
|