@xvortexsockets/baileys 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -0
- package/WAProto/AICommon.js +27981 -0
- package/WAProto/AICommon.proto +713 -0
- package/WAProto/Ephemeral.js +295 -0
- package/WAProto/Ephemeral.proto +7 -0
- package/WAProto/GenerateStatics.sh +4 -0
- package/WAProto/WAProto.proto +4775 -0
- package/WAProto/alt.js +7 -0
- package/WAProto/index.js +169661 -0
- package/lib/.sys/_ceche.js +0 -0
- package/lib/.sys/init.js +13 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.js +145 -0
- package/lib/Signal/Group/ciphertext-message.js +15 -0
- package/lib/Signal/Group/group-session-builder.js +64 -0
- package/lib/Signal/Group/group_cipher.js +96 -0
- package/lib/Signal/Group/index/_internal.js +1 -0
- package/lib/Signal/Group/index.js +57 -0
- package/lib/Signal/Group/keyhelper.js +55 -0
- package/lib/Signal/Group/queue-job.js +57 -0
- package/lib/Signal/Group/sender-chain-key.js +34 -0
- package/lib/Signal/Group/sender-key-distribution-message.js +66 -0
- package/lib/Signal/Group/sender-key-message.js +69 -0
- package/lib/Signal/Group/sender-key-name.js +51 -0
- package/lib/Signal/Group/sender-key-record.js +53 -0
- package/lib/Signal/Group/sender-key-state.js +99 -0
- package/lib/Signal/Group/sender-message-key.js +29 -0
- package/lib/Signal/libsignal.js +174 -0
- package/lib/Socket/Client/index.js +18 -0
- package/lib/Socket/Client/types.js +13 -0
- package/lib/Socket/Client/websocket.js +111 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.js +871 -0
- package/lib/Socket/groups.js +332 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.js +1054 -0
- package/lib/Socket/messages-send.js +1137 -0
- package/lib/Socket/newsletter.js +318 -0
- package/lib/Socket/setup.js +433 -0
- package/lib/Socket/socket.js +656 -0
- package/lib/Socket/usync.js +72 -0
- package/lib/Store/index.js +8 -0
- package/lib/Store/make-in-memory-store.js +439 -0
- package/lib/Store/make-ordered-dictionary.js +81 -0
- package/lib/Store/object-repository.js +27 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.js +7 -0
- package/lib/Types/Newsletter.js +18 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.js +42 -0
- package/lib/Utils/auth-utils.js +199 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.js +234 -0
- package/lib/Utils/chaanel/vyzen.js +0 -0
- package/lib/Utils/chat-utils.js +730 -0
- package/lib/Utils/crypto.js +189 -0
- package/lib/Utils/decode-wa-message.js +207 -0
- package/lib/Utils/event-buffer.js +518 -0
- package/lib/Utils/generics.js +441 -0
- package/lib/Utils/history.js +94 -0
- package/lib/Utils/index.js +33 -0
- package/lib/Utils/link-preview.js +126 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.js +43 -0
- package/lib/Utils/messages-media.js +1049 -0
- package/lib/Utils/messages.js +1103 -0
- package/lib/Utils/noise-handler.js +151 -0
- package/lib/Utils/process-message.js +321 -0
- package/lib/Utils/signal.js +162 -0
- package/lib/Utils/use-multi-file-auth-state.js +125 -0
- package/lib/Utils/validate-connection.js +233 -0
- package/lib/WABinary/constants.js +1303 -0
- package/lib/WABinary/decode.js +265 -0
- package/lib/WABinary/encode.js +250 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.js +69 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.js +155 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
- package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +24 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.js +89 -0
- package/lib/WAUSync/USyncUser.js +26 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.js +87 -0
- package/package.json +106 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.keyhelper = exports.CiphertextMessage = exports.SenderChainKey = exports.SenderMessageKey = exports.SenderKeyMessage = exports.SenderKeyState = exports.GroupCipher = exports.SenderKeyName = exports.SenderKeyRecord = exports.SenderKeyDistributionMessage = exports.GroupSessionBuilder = void 0;
|
|
37
|
+
var group_session_builder_1 = require("./group-session-builder");
|
|
38
|
+
Object.defineProperty(exports, "GroupSessionBuilder", { enumerable: true, get: function () { return group_session_builder_1.GroupSessionBuilder; } });
|
|
39
|
+
var sender_key_distribution_message_1 = require("./sender-key-distribution-message");
|
|
40
|
+
Object.defineProperty(exports, "SenderKeyDistributionMessage", { enumerable: true, get: function () { return sender_key_distribution_message_1.SenderKeyDistributionMessage; } });
|
|
41
|
+
var sender_key_record_1 = require("./sender-key-record");
|
|
42
|
+
Object.defineProperty(exports, "SenderKeyRecord", { enumerable: true, get: function () { return sender_key_record_1.SenderKeyRecord; } });
|
|
43
|
+
var sender_key_name_1 = require("./sender-key-name");
|
|
44
|
+
Object.defineProperty(exports, "SenderKeyName", { enumerable: true, get: function () { return sender_key_name_1.SenderKeyName; } });
|
|
45
|
+
var group_cipher_1 = require("./group_cipher");
|
|
46
|
+
Object.defineProperty(exports, "GroupCipher", { enumerable: true, get: function () { return group_cipher_1.GroupCipher; } });
|
|
47
|
+
var sender_key_state_1 = require("./sender-key-state");
|
|
48
|
+
Object.defineProperty(exports, "SenderKeyState", { enumerable: true, get: function () { return sender_key_state_1.SenderKeyState; } });
|
|
49
|
+
var sender_key_message_1 = require("./sender-key-message");
|
|
50
|
+
Object.defineProperty(exports, "SenderKeyMessage", { enumerable: true, get: function () { return sender_key_message_1.SenderKeyMessage; } });
|
|
51
|
+
var sender_message_key_1 = require("./sender-message-key");
|
|
52
|
+
Object.defineProperty(exports, "SenderMessageKey", { enumerable: true, get: function () { return sender_message_key_1.SenderMessageKey; } });
|
|
53
|
+
var sender_chain_key_1 = require("./sender-chain-key");
|
|
54
|
+
Object.defineProperty(exports, "SenderChainKey", { enumerable: true, get: function () { return sender_chain_key_1.SenderChainKey; } });
|
|
55
|
+
var ciphertext_message_1 = require("./ciphertext-message");
|
|
56
|
+
Object.defineProperty(exports, "CiphertextMessage", { enumerable: true, get: function () { return ciphertext_message_1.CiphertextMessage; } });
|
|
57
|
+
exports.keyhelper = __importStar(require("./keyhelper"));
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.generateSenderKey = generateSenderKey;
|
|
37
|
+
exports.generateSenderKeyId = generateSenderKeyId;
|
|
38
|
+
exports.generateSenderSigningKey = generateSenderSigningKey;
|
|
39
|
+
const nodeCrypto = __importStar(require("crypto"));
|
|
40
|
+
const curve_1 = require("libsignal/src/curve");
|
|
41
|
+
function generateSenderKey() {
|
|
42
|
+
return nodeCrypto.randomBytes(32);
|
|
43
|
+
}
|
|
44
|
+
function generateSenderKeyId() {
|
|
45
|
+
return nodeCrypto.randomInt(2147483647);
|
|
46
|
+
}
|
|
47
|
+
function generateSenderSigningKey(key) {
|
|
48
|
+
if (!key) {
|
|
49
|
+
key = (0, curve_1.generateKeyPair)();
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
public: Buffer.from(key.pubKey),
|
|
53
|
+
private: Buffer.from(key.privKey)
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = queueJob;
|
|
4
|
+
const _queueAsyncBuckets = new Map();
|
|
5
|
+
const _gcLimit = 10000;
|
|
6
|
+
async function _asyncQueueExecutor(queue, cleanup) {
|
|
7
|
+
let offt = 0;
|
|
8
|
+
// eslint-disable-next-line no-constant-condition
|
|
9
|
+
while (true) {
|
|
10
|
+
const limit = Math.min(queue.length, _gcLimit);
|
|
11
|
+
for (let i = offt; i < limit; i++) {
|
|
12
|
+
const job = queue[i];
|
|
13
|
+
try {
|
|
14
|
+
job.resolve(await job.awaitable());
|
|
15
|
+
}
|
|
16
|
+
catch (e) {
|
|
17
|
+
job.reject(e);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
if (limit < queue.length) {
|
|
21
|
+
if (limit >= _gcLimit) {
|
|
22
|
+
queue.splice(0, limit);
|
|
23
|
+
offt = 0;
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
offt = limit;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
break;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
cleanup();
|
|
34
|
+
}
|
|
35
|
+
function queueJob(bucket, awaitable) {
|
|
36
|
+
// Skip name assignment since it's readonly in strict mode
|
|
37
|
+
if (typeof bucket !== 'string') {
|
|
38
|
+
console.warn('Unhandled bucket type (for naming):', typeof bucket, bucket);
|
|
39
|
+
}
|
|
40
|
+
let inactive = false;
|
|
41
|
+
if (!_queueAsyncBuckets.has(bucket)) {
|
|
42
|
+
_queueAsyncBuckets.set(bucket, []);
|
|
43
|
+
inactive = true;
|
|
44
|
+
}
|
|
45
|
+
const queue = _queueAsyncBuckets.get(bucket);
|
|
46
|
+
const job = new Promise((resolve, reject) => {
|
|
47
|
+
queue.push({
|
|
48
|
+
awaitable,
|
|
49
|
+
resolve: resolve,
|
|
50
|
+
reject
|
|
51
|
+
});
|
|
52
|
+
});
|
|
53
|
+
if (inactive) {
|
|
54
|
+
_asyncQueueExecutor(queue, () => _queueAsyncBuckets.delete(bucket));
|
|
55
|
+
}
|
|
56
|
+
return job;
|
|
57
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderChainKey = void 0;
|
|
4
|
+
const crypto_1 = require("libsignal/src/crypto");
|
|
5
|
+
const sender_message_key_1 = require("./sender-message-key");
|
|
6
|
+
class SenderChainKey {
|
|
7
|
+
constructor(iteration, chainKey) {
|
|
8
|
+
this.MESSAGE_KEY_SEED = Buffer.from([0x01]);
|
|
9
|
+
this.CHAIN_KEY_SEED = Buffer.from([0x02]);
|
|
10
|
+
this.iteration = iteration;
|
|
11
|
+
if (chainKey instanceof Buffer) {
|
|
12
|
+
this.chainKey = chainKey;
|
|
13
|
+
}
|
|
14
|
+
else {
|
|
15
|
+
this.chainKey = Buffer.from(chainKey || []);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
getIteration() {
|
|
19
|
+
return this.iteration;
|
|
20
|
+
}
|
|
21
|
+
getSenderMessageKey() {
|
|
22
|
+
return new sender_message_key_1.SenderMessageKey(this.iteration, this.getDerivative(this.MESSAGE_KEY_SEED, this.chainKey));
|
|
23
|
+
}
|
|
24
|
+
getNext() {
|
|
25
|
+
return new SenderChainKey(this.iteration + 1, this.getDerivative(this.CHAIN_KEY_SEED, this.chainKey));
|
|
26
|
+
}
|
|
27
|
+
getSeed() {
|
|
28
|
+
return this.chainKey;
|
|
29
|
+
}
|
|
30
|
+
getDerivative(seed, key) {
|
|
31
|
+
return (0, crypto_1.calculateMAC)(key, seed);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.SenderChainKey = SenderChainKey;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderKeyDistributionMessage = void 0;
|
|
4
|
+
const WAProto_1 = require("../../../WAProto");
|
|
5
|
+
const ciphertext_message_1 = require("./ciphertext-message");
|
|
6
|
+
class SenderKeyDistributionMessage extends ciphertext_message_1.CiphertextMessage {
|
|
7
|
+
constructor(id, iteration, chainKey, signatureKey, serialized) {
|
|
8
|
+
super();
|
|
9
|
+
if (serialized) {
|
|
10
|
+
try {
|
|
11
|
+
const message = serialized.slice(1);
|
|
12
|
+
const distributionMessage = WAProto_1.proto.SenderKeyDistributionMessage.decode(message).toJSON();
|
|
13
|
+
this.serialized = serialized;
|
|
14
|
+
this.id = distributionMessage.id;
|
|
15
|
+
this.iteration = distributionMessage.iteration;
|
|
16
|
+
this.chainKey =
|
|
17
|
+
typeof distributionMessage.chainKey === 'string'
|
|
18
|
+
? Buffer.from(distributionMessage.chainKey, 'base64')
|
|
19
|
+
: distributionMessage.chainKey;
|
|
20
|
+
this.signatureKey =
|
|
21
|
+
typeof distributionMessage.signingKey === 'string'
|
|
22
|
+
? Buffer.from(distributionMessage.signingKey, 'base64')
|
|
23
|
+
: distributionMessage.signingKey;
|
|
24
|
+
}
|
|
25
|
+
catch (e) {
|
|
26
|
+
throw new Error(String(e));
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
const version = this.intsToByteHighAndLow(this.CURRENT_VERSION, this.CURRENT_VERSION);
|
|
31
|
+
this.id = id;
|
|
32
|
+
this.iteration = iteration;
|
|
33
|
+
this.chainKey = chainKey;
|
|
34
|
+
this.signatureKey = signatureKey;
|
|
35
|
+
const message = WAProto_1.proto.SenderKeyDistributionMessage.encode(WAProto_1.proto.SenderKeyDistributionMessage.create({
|
|
36
|
+
id,
|
|
37
|
+
iteration,
|
|
38
|
+
chainKey,
|
|
39
|
+
signingKey: this.signatureKey
|
|
40
|
+
})).finish();
|
|
41
|
+
this.serialized = Buffer.concat([Buffer.from([version]), message]);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
intsToByteHighAndLow(highValue, lowValue) {
|
|
45
|
+
return (((highValue << 4) | lowValue) & 0xff) % 256;
|
|
46
|
+
}
|
|
47
|
+
serialize() {
|
|
48
|
+
return this.serialized;
|
|
49
|
+
}
|
|
50
|
+
getType() {
|
|
51
|
+
return this.SENDERKEY_DISTRIBUTION_TYPE;
|
|
52
|
+
}
|
|
53
|
+
getIteration() {
|
|
54
|
+
return this.iteration;
|
|
55
|
+
}
|
|
56
|
+
getChainKey() {
|
|
57
|
+
return typeof this.chainKey === 'string' ? Buffer.from(this.chainKey, 'base64') : this.chainKey;
|
|
58
|
+
}
|
|
59
|
+
getSignatureKey() {
|
|
60
|
+
return typeof this.signatureKey === 'string' ? Buffer.from(this.signatureKey, 'base64') : this.signatureKey;
|
|
61
|
+
}
|
|
62
|
+
getId() {
|
|
63
|
+
return this.id;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
exports.SenderKeyDistributionMessage = SenderKeyDistributionMessage;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderKeyMessage = void 0;
|
|
4
|
+
const curve_1 = require("libsignal/src/curve");
|
|
5
|
+
const WAProto_1 = require("../../../WAProto");
|
|
6
|
+
const ciphertext_message_1 = require("./ciphertext-message");
|
|
7
|
+
class SenderKeyMessage extends ciphertext_message_1.CiphertextMessage {
|
|
8
|
+
constructor(keyId, iteration, ciphertext, signatureKey, serialized) {
|
|
9
|
+
super();
|
|
10
|
+
this.SIGNATURE_LENGTH = 64;
|
|
11
|
+
if (serialized) {
|
|
12
|
+
const version = serialized[0];
|
|
13
|
+
const message = serialized.slice(1, serialized.length - this.SIGNATURE_LENGTH);
|
|
14
|
+
const signature = serialized.slice(-1 * this.SIGNATURE_LENGTH);
|
|
15
|
+
const senderKeyMessage = WAProto_1.proto.SenderKeyMessage.decode(message).toJSON();
|
|
16
|
+
this.serialized = serialized;
|
|
17
|
+
this.messageVersion = (version & 0xff) >> 4;
|
|
18
|
+
this.keyId = senderKeyMessage.id;
|
|
19
|
+
this.iteration = senderKeyMessage.iteration;
|
|
20
|
+
this.ciphertext =
|
|
21
|
+
typeof senderKeyMessage.ciphertext === 'string'
|
|
22
|
+
? Buffer.from(senderKeyMessage.ciphertext, 'base64')
|
|
23
|
+
: senderKeyMessage.ciphertext;
|
|
24
|
+
this.signature = signature;
|
|
25
|
+
}
|
|
26
|
+
else {
|
|
27
|
+
const version = (((this.CURRENT_VERSION << 4) | this.CURRENT_VERSION) & 0xff) % 256;
|
|
28
|
+
const ciphertextBuffer = Buffer.from(ciphertext);
|
|
29
|
+
const message = WAProto_1.proto.SenderKeyMessage.encode(WAProto_1.proto.SenderKeyMessage.create({
|
|
30
|
+
id: keyId,
|
|
31
|
+
iteration: iteration,
|
|
32
|
+
ciphertext: ciphertextBuffer
|
|
33
|
+
})).finish();
|
|
34
|
+
const signature = this.getSignature(signatureKey, Buffer.concat([Buffer.from([version]), message]));
|
|
35
|
+
this.serialized = Buffer.concat([Buffer.from([version]), message, Buffer.from(signature)]);
|
|
36
|
+
this.messageVersion = this.CURRENT_VERSION;
|
|
37
|
+
this.keyId = keyId;
|
|
38
|
+
this.iteration = iteration;
|
|
39
|
+
this.ciphertext = ciphertextBuffer;
|
|
40
|
+
this.signature = signature;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
getKeyId() {
|
|
44
|
+
return this.keyId;
|
|
45
|
+
}
|
|
46
|
+
getIteration() {
|
|
47
|
+
return this.iteration;
|
|
48
|
+
}
|
|
49
|
+
getCipherText() {
|
|
50
|
+
return this.ciphertext;
|
|
51
|
+
}
|
|
52
|
+
verifySignature(signatureKey) {
|
|
53
|
+
const part1 = this.serialized.slice(0, this.serialized.length - this.SIGNATURE_LENGTH);
|
|
54
|
+
const part2 = this.serialized.slice(-1 * this.SIGNATURE_LENGTH);
|
|
55
|
+
const res = (0, curve_1.verifySignature)(signatureKey, part1, part2);
|
|
56
|
+
if (!res)
|
|
57
|
+
throw new Error('Invalid signature!');
|
|
58
|
+
}
|
|
59
|
+
getSignature(signatureKey, serialized) {
|
|
60
|
+
return Buffer.from((0, curve_1.calculateSignature)(signatureKey, serialized));
|
|
61
|
+
}
|
|
62
|
+
serialize() {
|
|
63
|
+
return this.serialized;
|
|
64
|
+
}
|
|
65
|
+
getType() {
|
|
66
|
+
return 4;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.SenderKeyMessage = SenderKeyMessage;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderKeyName = void 0;
|
|
4
|
+
function isNull(str) {
|
|
5
|
+
return str === null || str === '';
|
|
6
|
+
}
|
|
7
|
+
function intValue(num) {
|
|
8
|
+
const MAX_VALUE = 0x7fffffff;
|
|
9
|
+
const MIN_VALUE = -0x80000000;
|
|
10
|
+
if (num > MAX_VALUE || num < MIN_VALUE) {
|
|
11
|
+
return num & 0xffffffff;
|
|
12
|
+
}
|
|
13
|
+
return num;
|
|
14
|
+
}
|
|
15
|
+
function hashCode(strKey) {
|
|
16
|
+
let hash = 0;
|
|
17
|
+
if (!isNull(strKey)) {
|
|
18
|
+
for (let i = 0; i < strKey.length; i++) {
|
|
19
|
+
hash = hash * 31 + strKey.charCodeAt(i);
|
|
20
|
+
hash = intValue(hash);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return hash;
|
|
24
|
+
}
|
|
25
|
+
class SenderKeyName {
|
|
26
|
+
constructor(groupId, sender) {
|
|
27
|
+
this.groupId = groupId;
|
|
28
|
+
this.sender = sender;
|
|
29
|
+
}
|
|
30
|
+
getGroupId() {
|
|
31
|
+
return this.groupId;
|
|
32
|
+
}
|
|
33
|
+
getSender() {
|
|
34
|
+
return this.sender;
|
|
35
|
+
}
|
|
36
|
+
serialize() {
|
|
37
|
+
return `${this.groupId}::${this.sender.id}::${this.sender.deviceId}`;
|
|
38
|
+
}
|
|
39
|
+
toString() {
|
|
40
|
+
return this.serialize();
|
|
41
|
+
}
|
|
42
|
+
equals(other) {
|
|
43
|
+
if (other === null)
|
|
44
|
+
return false;
|
|
45
|
+
return this.groupId === other.groupId && this.sender.toString() === other.sender.toString();
|
|
46
|
+
}
|
|
47
|
+
hashCode() {
|
|
48
|
+
return hashCode(this.groupId) ^ hashCode(this.sender.toString());
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.SenderKeyName = SenderKeyName;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderKeyRecord = void 0;
|
|
4
|
+
const generics_1 = require("../../Utils/generics");
|
|
5
|
+
const sender_key_state_1 = require("./sender-key-state");
|
|
6
|
+
class SenderKeyRecord {
|
|
7
|
+
constructor(serialized) {
|
|
8
|
+
this.MAX_STATES = 5;
|
|
9
|
+
this.senderKeyStates = [];
|
|
10
|
+
if (serialized) {
|
|
11
|
+
for (const structure of serialized) {
|
|
12
|
+
this.senderKeyStates.push(new sender_key_state_1.SenderKeyState(null, null, null, null, null, null, structure));
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
isEmpty() {
|
|
17
|
+
return this.senderKeyStates.length === 0;
|
|
18
|
+
}
|
|
19
|
+
getSenderKeyState(keyId) {
|
|
20
|
+
if (keyId === undefined && this.senderKeyStates.length) {
|
|
21
|
+
return this.senderKeyStates[this.senderKeyStates.length - 1];
|
|
22
|
+
}
|
|
23
|
+
return this.senderKeyStates.find(state => state.getKeyId() === keyId);
|
|
24
|
+
}
|
|
25
|
+
addSenderKeyState(id, iteration, chainKey, signatureKey) {
|
|
26
|
+
this.senderKeyStates.push(new sender_key_state_1.SenderKeyState(id, iteration, chainKey, null, signatureKey));
|
|
27
|
+
if (this.senderKeyStates.length > this.MAX_STATES) {
|
|
28
|
+
this.senderKeyStates.shift();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
setSenderKeyState(id, iteration, chainKey, keyPair) {
|
|
32
|
+
this.senderKeyStates.length = 0;
|
|
33
|
+
this.senderKeyStates.push(new sender_key_state_1.SenderKeyState(id, iteration, chainKey, keyPair));
|
|
34
|
+
}
|
|
35
|
+
serialize() {
|
|
36
|
+
return this.senderKeyStates.map(state => state.getStructure());
|
|
37
|
+
}
|
|
38
|
+
static deserialize(data) {
|
|
39
|
+
let parsed;
|
|
40
|
+
if (typeof data === 'string') {
|
|
41
|
+
parsed = JSON.parse(data, generics_1.BufferJSON.reviver);
|
|
42
|
+
}
|
|
43
|
+
else if (data instanceof Uint8Array) {
|
|
44
|
+
const str = Buffer.from(data).toString('utf-8');
|
|
45
|
+
parsed = JSON.parse(str, generics_1.BufferJSON.reviver);
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
parsed = data;
|
|
49
|
+
}
|
|
50
|
+
return new SenderKeyRecord(parsed);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
exports.SenderKeyRecord = SenderKeyRecord;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderKeyState = void 0;
|
|
4
|
+
const sender_chain_key_1 = require("./sender-chain-key");
|
|
5
|
+
const sender_message_key_1 = require("./sender-message-key");
|
|
6
|
+
class SenderKeyState {
|
|
7
|
+
constructor(id, iteration, chainKey, signatureKeyPair, signatureKeyPublic, signatureKeyPrivate, senderKeyStateStructure) {
|
|
8
|
+
this.MAX_MESSAGE_KEYS = 2000;
|
|
9
|
+
if (senderKeyStateStructure) {
|
|
10
|
+
this.senderKeyStateStructure = senderKeyStateStructure;
|
|
11
|
+
}
|
|
12
|
+
else {
|
|
13
|
+
if (signatureKeyPair) {
|
|
14
|
+
signatureKeyPublic = signatureKeyPair.public;
|
|
15
|
+
signatureKeyPrivate = signatureKeyPair.private;
|
|
16
|
+
}
|
|
17
|
+
chainKey = typeof chainKey === 'string' ? Buffer.from(chainKey, 'base64') : chainKey;
|
|
18
|
+
const senderChainKeyStructure = {
|
|
19
|
+
iteration: iteration || 0,
|
|
20
|
+
seed: chainKey || Buffer.alloc(0)
|
|
21
|
+
};
|
|
22
|
+
const signingKeyStructure = {
|
|
23
|
+
public: typeof signatureKeyPublic === 'string'
|
|
24
|
+
? Buffer.from(signatureKeyPublic, 'base64')
|
|
25
|
+
: signatureKeyPublic || Buffer.alloc(0)
|
|
26
|
+
};
|
|
27
|
+
if (signatureKeyPrivate) {
|
|
28
|
+
signingKeyStructure.private =
|
|
29
|
+
typeof signatureKeyPrivate === 'string' ? Buffer.from(signatureKeyPrivate, 'base64') : signatureKeyPrivate;
|
|
30
|
+
}
|
|
31
|
+
this.senderKeyStateStructure = {
|
|
32
|
+
senderKeyId: id || 0,
|
|
33
|
+
senderChainKey: senderChainKeyStructure,
|
|
34
|
+
senderSigningKey: signingKeyStructure,
|
|
35
|
+
senderMessageKeys: []
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
getKeyId() {
|
|
40
|
+
return this.senderKeyStateStructure.senderKeyId;
|
|
41
|
+
}
|
|
42
|
+
getSenderChainKey() {
|
|
43
|
+
return new sender_chain_key_1.SenderChainKey(this.senderKeyStateStructure.senderChainKey.iteration, this.senderKeyStateStructure.senderChainKey.seed);
|
|
44
|
+
}
|
|
45
|
+
setSenderChainKey(chainKey) {
|
|
46
|
+
this.senderKeyStateStructure.senderChainKey = {
|
|
47
|
+
iteration: chainKey.getIteration(),
|
|
48
|
+
seed: chainKey.getSeed()
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
getSigningKeyPublic() {
|
|
52
|
+
const publicKey = this.senderKeyStateStructure.senderSigningKey.public;
|
|
53
|
+
if (publicKey instanceof Buffer) {
|
|
54
|
+
return publicKey;
|
|
55
|
+
}
|
|
56
|
+
else if (typeof publicKey === 'string') {
|
|
57
|
+
return Buffer.from(publicKey, 'base64');
|
|
58
|
+
}
|
|
59
|
+
return Buffer.from(publicKey || []);
|
|
60
|
+
}
|
|
61
|
+
getSigningKeyPrivate() {
|
|
62
|
+
const privateKey = this.senderKeyStateStructure.senderSigningKey.private;
|
|
63
|
+
if (!privateKey) {
|
|
64
|
+
return undefined;
|
|
65
|
+
}
|
|
66
|
+
if (privateKey instanceof Buffer) {
|
|
67
|
+
return privateKey;
|
|
68
|
+
}
|
|
69
|
+
else if (typeof privateKey === 'string') {
|
|
70
|
+
return Buffer.from(privateKey, 'base64');
|
|
71
|
+
}
|
|
72
|
+
return Buffer.from(privateKey || []);
|
|
73
|
+
}
|
|
74
|
+
hasSenderMessageKey(iteration) {
|
|
75
|
+
return this.senderKeyStateStructure.senderMessageKeys.some(key => key.iteration === iteration);
|
|
76
|
+
}
|
|
77
|
+
addSenderMessageKey(senderMessageKey) {
|
|
78
|
+
this.senderKeyStateStructure.senderMessageKeys.push({
|
|
79
|
+
iteration: senderMessageKey.getIteration(),
|
|
80
|
+
seed: senderMessageKey.getSeed()
|
|
81
|
+
});
|
|
82
|
+
if (this.senderKeyStateStructure.senderMessageKeys.length > this.MAX_MESSAGE_KEYS) {
|
|
83
|
+
this.senderKeyStateStructure.senderMessageKeys.shift();
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
removeSenderMessageKey(iteration) {
|
|
87
|
+
const index = this.senderKeyStateStructure.senderMessageKeys.findIndex(key => key.iteration === iteration);
|
|
88
|
+
if (index !== -1) {
|
|
89
|
+
const messageKey = this.senderKeyStateStructure.senderMessageKeys[index];
|
|
90
|
+
this.senderKeyStateStructure.senderMessageKeys.splice(index, 1);
|
|
91
|
+
return new sender_message_key_1.SenderMessageKey(messageKey.iteration, messageKey.seed);
|
|
92
|
+
}
|
|
93
|
+
return null;
|
|
94
|
+
}
|
|
95
|
+
getStructure() {
|
|
96
|
+
return this.senderKeyStateStructure;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.SenderKeyState = SenderKeyState;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SenderMessageKey = void 0;
|
|
4
|
+
const crypto_1 = require("libsignal/src/crypto");
|
|
5
|
+
class SenderMessageKey {
|
|
6
|
+
constructor(iteration, seed) {
|
|
7
|
+
const derivative = (0, crypto_1.deriveSecrets)(seed, Buffer.alloc(32), Buffer.from('WhisperGroup'));
|
|
8
|
+
const keys = new Uint8Array(32);
|
|
9
|
+
keys.set(new Uint8Array(derivative[0].slice(16)));
|
|
10
|
+
keys.set(new Uint8Array(derivative[1].slice(0, 16)), 16);
|
|
11
|
+
this.iv = Buffer.from(derivative[0].slice(0, 16));
|
|
12
|
+
this.cipherKey = Buffer.from(keys.buffer);
|
|
13
|
+
this.iteration = iteration;
|
|
14
|
+
this.seed = seed;
|
|
15
|
+
}
|
|
16
|
+
getIteration() {
|
|
17
|
+
return this.iteration;
|
|
18
|
+
}
|
|
19
|
+
getIv() {
|
|
20
|
+
return this.iv;
|
|
21
|
+
}
|
|
22
|
+
getCipherKey() {
|
|
23
|
+
return this.cipherKey;
|
|
24
|
+
}
|
|
25
|
+
getSeed() {
|
|
26
|
+
return this.seed;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.SenderMessageKey = SenderMessageKey;
|