mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 02:20:39 +00:00
18 lines
409 B
Java
18 lines
409 B
Java
package org.asamk.textsecure;
|
|
|
|
import org.whispersystems.signalservice.api.push.TrustStore;
|
|
|
|
import java.io.InputStream;
|
|
|
|
class WhisperTrustStore implements TrustStore {
|
|
|
|
@Override
|
|
public InputStream getKeyStoreInputStream() {
|
|
return WhisperTrustStore.class.getResourceAsStream("whisper.store");
|
|
}
|
|
|
|
@Override
|
|
public String getKeyStorePassword() {
|
|
return "whisper";
|
|
}
|
|
}
|