Merge pull request #564 from vanitasvitae/bumpLibSignal

Bump libsignal-protocol-java to 2.8.1
This commit is contained in:
Florian Schmaus 2023-11-25 19:00:45 +00:00 committed by GitHub
commit 6859de95d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -6,7 +6,7 @@ dependencies {
api project(":smack-im")
api project(":smack-extensions")
api project(":smack-omemo")
implementation 'org.whispersystems:signal-protocol-java:2.6.2'
implementation 'org.whispersystems:signal-protocol-java:2.8.1'
testFixturesApi(testFixtures(project(":smack-core")))
testImplementation project(path: ":smack-omemo", configuration: "testRuntime")

View File

@ -122,6 +122,22 @@ public class SignalOmemoStoreConnector
return true;
}
@Override
public IdentityKey getIdentity(SignalProtocolAddress address) {
OmemoDevice device;
try {
device = asOmemoDevice(address);
} catch (XmppStringprepException e) {
throw new AssertionError(e);
}
try {
return omemoStore.loadOmemoIdentityKey(getOurDevice(), device);
} catch (IOException | CorruptedOmemoKeyException e) {
throw new IllegalStateException(e);
}
}
@Override
public PreKeyRecord loadPreKey(int i) throws InvalidKeyIdException {
PreKeyRecord preKey;