mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-22 20:18:36 +00:00
Support encrypted transport, properly handle multiple recipients.
1) Add encryption support for the transport layer. This obscures metadata from the push messaging provider. 2) Better support the direction multiple destination messages is headed (one unique message per recipient).
This commit is contained in:
@@ -96,8 +96,8 @@ public class PreKeyBundleMessage {
|
||||
}
|
||||
}
|
||||
|
||||
public String serialize() {
|
||||
return Base64.encodeBytesWithoutPadding(this.messageBytes);
|
||||
public byte[] serialize() {
|
||||
return this.messageBytes;
|
||||
}
|
||||
|
||||
public int getSupportedVersion() {
|
||||
|
||||
Reference in New Issue
Block a user