Files
signal-cli/src/main/java/cli/WhisperTrustStore.java
2015-05-11 12:55:18 +02:00

21 lines
470 B
Java

package cli;
import org.whispersystems.textsecure.api.push.TrustStore;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
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";
}
}