remove signalprotocoladress unused

pull/1783/head
Audric Ackermann 4 years ago
parent b045411961
commit 32cb19125f
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -6,17 +6,6 @@ export type CipherTextObject = {
type: SignalService.Envelope.Type;
body: BinaryString;
};
export interface SignalProtocolAddressConstructor {
new (hexEncodedPublicKey: string, deviceId: number): SignalProtocolAddress;
fromString(encodedAddress: string): SignalProtocolAddress;
}
export interface SignalProtocolAddress {
getName(): string;
getDeviceId(): number;
toString(): string;
equals(other: SignalProtocolAddress): boolean;
}
export type KeyPair = {
pubKey: ArrayBuffer;
@ -56,7 +45,6 @@ export interface KeyHelperInterface {
}
export interface LibsignalProtocol {
SignalProtocolAddress: SignalProtocolAddressConstructor;
Curve: CurveInterface;
crypto: CryptoInterface;
KeyHelper: KeyHelperInterface;

@ -35377,42 +35377,6 @@
SENDING: 1,
RECEIVING: 2
};
function SignalProtocolAddress(name, deviceId) {
this.name = name;
this.deviceId = deviceId;
}
SignalProtocolAddress.prototype = {
getName: function () {
return this.name;
},
getDeviceId: function () {
return this.deviceId;
},
toString: function () {
return this.name + '.' + this.deviceId;
},
equals: function (other) {
if (!(other instanceof SignalProtocolAddress)) { return false; }
return other.name === this.name && other.deviceId === this.deviceId;
}
};
libsignal.SignalProtocolAddress = function (name, deviceId) {
var address = new SignalProtocolAddress(name, deviceId);
['getName', 'getDeviceId', 'toString', 'equals'].forEach(function (method) {
this[method] = address[method].bind(address);
}.bind(this));
};
libsignal.SignalProtocolAddress.fromString = function (encodedAddress) {
if (typeof encodedAddress !== 'string' || !encodedAddress.match(/.*\.\d+/)) {
throw new Error('Invalid SignalProtocolAddress string');
}
var parts = encodedAddress.split('.');
return new libsignal.SignalProtocolAddress(parts[0], parseInt(parts[1]));
};
/*
* jobQueue manages multiple queues indexed by device to serialize

@ -98,10 +98,6 @@ describe('MessageEncrypter', () => {
};
beforeEach(() => {
TestUtils.stubWindow('libsignal', {
SignalProtocolAddress: sandbox.stub(),
} as any);
TestUtils.stubWindow('textsecure', {
storage: {
protocol: sandbox.stub(),

@ -42,10 +42,6 @@ describe('MessageQueue', () => {
// Utils Stubs
sandbox.stub(UserUtils, 'getOurPubKeyStrFromCache').returns(ourNumber);
TestUtils.stubWindow('libsignal', {
SignalProtocolAddress: sandbox.stub(),
} as any);
// Message Sender Stubs
sendStub = sandbox.stub(MessageSender, 'send').resolves();
messageSentHandlerFailedStub = sandbox

Loading…
Cancel
Save