@genuxofficial/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/LICENSE +21 -0
- package/README.md +1 -0
- package/WAProto/GenerateStatics.sh +4 -0
- package/WAProto/WAProto.proto +3344 -0
- package/WAProto/index.d.ts +37016 -0
- package/WAProto/index.js +101044 -0
- package/WASignalGroup/GroupProtocol.js +1697 -0
- package/WASignalGroup/ciphertext_message.js +16 -0
- package/WASignalGroup/group_cipher.js +120 -0
- package/WASignalGroup/group_session_builder.js +46 -0
- package/WASignalGroup/index.js +5 -0
- package/WASignalGroup/keyhelper.js +21 -0
- package/WASignalGroup/protobufs.js +3 -0
- package/WASignalGroup/queue_job.js +69 -0
- package/WASignalGroup/sender_chain_key.js +50 -0
- package/WASignalGroup/sender_key_distribution_message.js +78 -0
- package/WASignalGroup/sender_key_message.js +92 -0
- package/WASignalGroup/sender_key_name.js +70 -0
- package/WASignalGroup/sender_key_record.js +56 -0
- package/WASignalGroup/sender_key_state.js +129 -0
- package/WASignalGroup/sender_message_key.js +39 -0
- package/lib/Defaults/baileys-version.json +3 -0
- package/lib/Defaults/index.d.ts +53 -0
- package/lib/Defaults/index.js +106 -0
- package/lib/Signal/libsignal.d.ts +3 -0
- package/lib/Signal/libsignal.js +152 -0
- package/lib/Socket/Client/index.d.ts +2 -0
- package/lib/Socket/Client/index.js +18 -0
- package/lib/Socket/Client/types.d.ts +17 -0
- package/lib/Socket/Client/types.js +13 -0
- package/lib/Socket/Client/websocket.d.ts +12 -0
- package/lib/Socket/Client/websocket.js +62 -0
- package/lib/Socket/business.d.ts +149 -0
- package/lib/Socket/business.js +260 -0
- package/lib/Socket/chats.d.ts +85 -0
- package/lib/Socket/chats.js +850 -0
- package/lib/Socket/groups.d.ts +124 -0
- package/lib/Socket/groups.js +314 -0
- package/lib/Socket/index.d.ts +149 -0
- package/lib/Socket/index.js +10 -0
- package/lib/Socket/messages-recv.d.ts +136 -0
- package/lib/Socket/messages-recv.js +912 -0
- package/lib/Socket/messages-send.d.ts +130 -0
- package/lib/Socket/messages-send.js +673 -0
- package/lib/Socket/socket.d.ts +45 -0
- package/lib/Socket/socket.js +622 -0
- package/lib/Socket/usync.d.ts +38 -0
- package/lib/Socket/usync.js +70 -0
- package/lib/Store/index.d.ts +3 -0
- package/lib/Store/index.js +10 -0
- package/lib/Store/make-cache-manager-store.d.ts +14 -0
- package/lib/Store/make-cache-manager-store.js +83 -0
- package/lib/Store/make-in-memory-store.d.ts +118 -0
- package/lib/Store/make-in-memory-store.js +420 -0
- package/lib/Store/make-ordered-dictionary.d.ts +13 -0
- package/lib/Store/make-ordered-dictionary.js +81 -0
- package/lib/Store/object-repository.d.ts +10 -0
- package/lib/Store/object-repository.js +27 -0
- package/lib/Types/Auth.d.ts +105 -0
- package/lib/Types/Auth.js +2 -0
- package/lib/Types/Call.d.ts +13 -0
- package/lib/Types/Call.js +2 -0
- package/lib/Types/Chat.d.ts +108 -0
- package/lib/Types/Chat.js +4 -0
- package/lib/Types/Contact.d.ts +19 -0
- package/lib/Types/Contact.js +2 -0
- package/lib/Types/Events.d.ts +172 -0
- package/lib/Types/Events.js +2 -0
- package/lib/Types/GroupMetadata.d.ts +56 -0
- package/lib/Types/GroupMetadata.js +2 -0
- package/lib/Types/Label.d.ts +46 -0
- package/lib/Types/Label.js +27 -0
- package/lib/Types/LabelAssociation.d.ts +29 -0
- package/lib/Types/LabelAssociation.js +9 -0
- package/lib/Types/Message.d.ts +271 -0
- package/lib/Types/Message.js +9 -0
- package/lib/Types/Product.d.ts +78 -0
- package/lib/Types/Product.js +2 -0
- package/lib/Types/Signal.d.ts +57 -0
- package/lib/Types/Signal.js +2 -0
- package/lib/Types/Socket.d.ts +118 -0
- package/lib/Types/Socket.js +2 -0
- package/lib/Types/State.d.ts +27 -0
- package/lib/Types/State.js +2 -0
- package/lib/Types/USync.d.ts +25 -0
- package/lib/Types/USync.js +2 -0
- package/lib/Types/index.d.ts +63 -0
- package/lib/Types/index.js +41 -0
- package/lib/Utils/auth-utils.d.ts +18 -0
- package/lib/Utils/auth-utils.js +200 -0
- package/lib/Utils/baileys-event-stream.d.ts +16 -0
- package/lib/Utils/baileys-event-stream.js +63 -0
- package/lib/Utils/business.d.ts +22 -0
- package/lib/Utils/business.js +234 -0
- package/lib/Utils/chat-utils.d.ts +72 -0
- package/lib/Utils/chat-utils.js +745 -0
- package/lib/Utils/crypto.d.ts +42 -0
- package/lib/Utils/crypto.js +181 -0
- package/lib/Utils/decode-wa-message.d.ts +36 -0
- package/lib/Utils/decode-wa-message.js +205 -0
- package/lib/Utils/event-buffer.d.ts +35 -0
- package/lib/Utils/event-buffer.js +520 -0
- package/lib/Utils/generics.d.ts +94 -0
- package/lib/Utils/generics.js +433 -0
- package/lib/Utils/history.d.ts +19 -0
- package/lib/Utils/history.js +94 -0
- package/lib/Utils/index.d.ts +17 -0
- package/lib/Utils/index.js +33 -0
- package/lib/Utils/link-preview.d.ts +21 -0
- package/lib/Utils/link-preview.js +116 -0
- package/lib/Utils/logger.d.ts +11 -0
- package/lib/Utils/logger.js +7 -0
- package/lib/Utils/lt-hash.d.ts +12 -0
- package/lib/Utils/lt-hash.js +51 -0
- package/lib/Utils/make-mutex.d.ts +7 -0
- package/lib/Utils/make-mutex.js +44 -0
- package/lib/Utils/messages-media.d.ts +108 -0
- package/lib/Utils/messages-media.js +667 -0
- package/lib/Utils/messages.d.ts +78 -0
- package/lib/Utils/messages.js +760 -0
- package/lib/Utils/noise-handler.d.ts +21 -0
- package/lib/Utils/noise-handler.js +150 -0
- package/lib/Utils/process-message.d.ts +42 -0
- package/lib/Utils/process-message.js +373 -0
- package/lib/Utils/signal.d.ts +33 -0
- package/lib/Utils/signal.js +153 -0
- package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
- package/lib/Utils/use-multi-file-auth-state.js +94 -0
- package/lib/Utils/validate-connection.d.ts +10 -0
- package/lib/Utils/validate-connection.js +175 -0
- package/lib/WABinary/constants.d.ts +27 -0
- package/lib/WABinary/constants.js +40 -0
- package/lib/WABinary/decode.d.ts +8 -0
- package/lib/WABinary/decode.js +254 -0
- package/lib/WABinary/encode.d.ts +4 -0
- package/lib/WABinary/encode.js +234 -0
- package/lib/WABinary/generic-utils.d.ts +16 -0
- package/lib/WABinary/generic-utils.js +110 -0
- package/lib/WABinary/index.d.ts +5 -0
- package/lib/WABinary/index.js +21 -0
- package/lib/WABinary/jid-utils.d.ts +31 -0
- package/lib/WABinary/jid-utils.js +62 -0
- package/lib/WABinary/types.d.ts +18 -0
- package/lib/WABinary/types.js +2 -0
- package/lib/WAM/BinaryInfo.d.ts +18 -0
- package/lib/WAM/BinaryInfo.js +13 -0
- package/lib/WAM/constants.d.ts +39 -0
- package/lib/WAM/constants.js +15350 -0
- package/lib/WAM/encode.d.ts +4 -0
- package/lib/WAM/encode.js +155 -0
- package/lib/WAM/index.d.ts +3 -0
- package/lib/WAM/index.js +19 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
- package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
- package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
- package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
- package/lib/WAUSync/Protocols/index.d.ts +4 -0
- package/lib/WAUSync/Protocols/index.js +20 -0
- package/lib/WAUSync/USyncQuery.d.ts +26 -0
- package/lib/WAUSync/USyncQuery.js +79 -0
- package/lib/WAUSync/USyncUser.d.ts +10 -0
- package/lib/WAUSync/USyncUser.js +22 -0
- package/lib/WAUSync/index.d.ts +3 -0
- package/lib/WAUSync/index.js +19 -0
- package/lib/index.d.ts +12 -0
- package/lib/index.js +31 -0
- package/package.json +104 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
/// <reference types="node" />
|
3
|
+
import { proto } from '../../WAProto';
|
4
|
+
import { KeyPair } from '../Types';
|
5
|
+
import { BinaryNode } from '../WABinary';
|
6
|
+
import { ILogger } from './logger';
|
7
|
+
export declare const makeNoiseHandler: ({ keyPair: { private: privateKey, public: publicKey }, NOISE_HEADER, logger, routingInfo }: {
|
8
|
+
keyPair: KeyPair;
|
9
|
+
NOISE_HEADER: Uint8Array;
|
10
|
+
logger: ILogger;
|
11
|
+
routingInfo?: Buffer | undefined;
|
12
|
+
}) => {
|
13
|
+
encrypt: (plaintext: Uint8Array) => Buffer;
|
14
|
+
decrypt: (ciphertext: Uint8Array) => Buffer;
|
15
|
+
authenticate: (data: Uint8Array) => void;
|
16
|
+
mixIntoKey: (data: Uint8Array) => Promise<void>;
|
17
|
+
finishInit: () => Promise<void>;
|
18
|
+
processHandshake: ({ serverHello }: proto.HandshakeMessage, noiseKey: KeyPair) => Promise<Buffer>;
|
19
|
+
encodeFrame: (data: Buffer | Uint8Array) => Buffer;
|
20
|
+
decodeFrame: (newData: Buffer | Uint8Array, onFrame: (buff: Uint8Array | BinaryNode) => void) => Promise<void>;
|
21
|
+
};
|
@@ -0,0 +1,150 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.makeNoiseHandler = void 0;
|
4
|
+
const boom_1 = require("@hapi/boom");
|
5
|
+
const WAProto_1 = require("../../WAProto");
|
6
|
+
const Defaults_1 = require("../Defaults");
|
7
|
+
const WABinary_1 = require("../WABinary");
|
8
|
+
const crypto_1 = require("./crypto");
|
9
|
+
const generateIV = (counter) => {
|
10
|
+
const iv = new ArrayBuffer(12);
|
11
|
+
new DataView(iv).setUint32(8, counter);
|
12
|
+
return new Uint8Array(iv);
|
13
|
+
};
|
14
|
+
const makeNoiseHandler = ({ keyPair: { private: privateKey, public: publicKey }, NOISE_HEADER, logger, routingInfo }) => {
|
15
|
+
logger = logger.child({ class: 'ns' });
|
16
|
+
const authenticate = (data) => {
|
17
|
+
if (!isFinished) {
|
18
|
+
hash = (0, crypto_1.sha256)(Buffer.concat([hash, data]));
|
19
|
+
}
|
20
|
+
};
|
21
|
+
const encrypt = (plaintext) => {
|
22
|
+
const result = (0, crypto_1.aesEncryptGCM)(plaintext, encKey, generateIV(writeCounter), hash);
|
23
|
+
writeCounter += 1;
|
24
|
+
authenticate(result);
|
25
|
+
return result;
|
26
|
+
};
|
27
|
+
const decrypt = (ciphertext) => {
|
28
|
+
// before the handshake is finished, we use the same counter
|
29
|
+
// after handshake, the counters are different
|
30
|
+
const iv = generateIV(isFinished ? readCounter : writeCounter);
|
31
|
+
const result = (0, crypto_1.aesDecryptGCM)(ciphertext, decKey, iv, hash);
|
32
|
+
if (isFinished) {
|
33
|
+
readCounter += 1;
|
34
|
+
}
|
35
|
+
else {
|
36
|
+
writeCounter += 1;
|
37
|
+
}
|
38
|
+
authenticate(ciphertext);
|
39
|
+
return result;
|
40
|
+
};
|
41
|
+
const localHKDF = async (data) => {
|
42
|
+
const key = await (0, crypto_1.hkdf)(Buffer.from(data), 64, { salt, info: '' });
|
43
|
+
return [key.slice(0, 32), key.slice(32)];
|
44
|
+
};
|
45
|
+
const mixIntoKey = async (data) => {
|
46
|
+
const [write, read] = await localHKDF(data);
|
47
|
+
salt = write;
|
48
|
+
encKey = read;
|
49
|
+
decKey = read;
|
50
|
+
readCounter = 0;
|
51
|
+
writeCounter = 0;
|
52
|
+
};
|
53
|
+
const finishInit = async () => {
|
54
|
+
const [write, read] = await localHKDF(new Uint8Array(0));
|
55
|
+
encKey = write;
|
56
|
+
decKey = read;
|
57
|
+
hash = Buffer.from([]);
|
58
|
+
readCounter = 0;
|
59
|
+
writeCounter = 0;
|
60
|
+
isFinished = true;
|
61
|
+
};
|
62
|
+
const data = Buffer.from(Defaults_1.NOISE_MODE);
|
63
|
+
let hash = data.byteLength === 32 ? data : (0, crypto_1.sha256)(data);
|
64
|
+
let salt = hash;
|
65
|
+
let encKey = hash;
|
66
|
+
let decKey = hash;
|
67
|
+
let readCounter = 0;
|
68
|
+
let writeCounter = 0;
|
69
|
+
let isFinished = false;
|
70
|
+
let sentIntro = false;
|
71
|
+
let inBytes = Buffer.alloc(0);
|
72
|
+
authenticate(NOISE_HEADER);
|
73
|
+
authenticate(publicKey);
|
74
|
+
return {
|
75
|
+
encrypt,
|
76
|
+
decrypt,
|
77
|
+
authenticate,
|
78
|
+
mixIntoKey,
|
79
|
+
finishInit,
|
80
|
+
processHandshake: async ({ serverHello }, noiseKey) => {
|
81
|
+
authenticate(serverHello.ephemeral);
|
82
|
+
await mixIntoKey(crypto_1.Curve.sharedKey(privateKey, serverHello.ephemeral));
|
83
|
+
const decStaticContent = decrypt(serverHello.static);
|
84
|
+
await mixIntoKey(crypto_1.Curve.sharedKey(privateKey, decStaticContent));
|
85
|
+
const certDecoded = decrypt(serverHello.payload);
|
86
|
+
const { intermediate: certIntermediate } = WAProto_1.proto.CertChain.decode(certDecoded);
|
87
|
+
const { issuerSerial } = WAProto_1.proto.CertChain.NoiseCertificate.Details.decode(certIntermediate.details);
|
88
|
+
if (issuerSerial !== Defaults_1.WA_CERT_DETAILS.SERIAL) {
|
89
|
+
throw new boom_1.Boom('certification match failed', { statusCode: 400 });
|
90
|
+
}
|
91
|
+
const keyEnc = encrypt(noiseKey.public);
|
92
|
+
await mixIntoKey(crypto_1.Curve.sharedKey(noiseKey.private, serverHello.ephemeral));
|
93
|
+
return keyEnc;
|
94
|
+
},
|
95
|
+
encodeFrame: (data) => {
|
96
|
+
if (isFinished) {
|
97
|
+
data = encrypt(data);
|
98
|
+
}
|
99
|
+
let header;
|
100
|
+
if (routingInfo) {
|
101
|
+
header = Buffer.alloc(7);
|
102
|
+
header.write('ED', 0, 'utf8');
|
103
|
+
header.writeUint8(0, 2);
|
104
|
+
header.writeUint8(1, 3);
|
105
|
+
header.writeUint8(routingInfo.byteLength >> 16, 4);
|
106
|
+
header.writeUint16BE(routingInfo.byteLength & 65535, 5);
|
107
|
+
header = Buffer.concat([header, routingInfo, NOISE_HEADER]);
|
108
|
+
}
|
109
|
+
else {
|
110
|
+
header = Buffer.from(NOISE_HEADER);
|
111
|
+
}
|
112
|
+
const introSize = sentIntro ? 0 : header.length;
|
113
|
+
const frame = Buffer.alloc(introSize + 3 + data.byteLength);
|
114
|
+
if (!sentIntro) {
|
115
|
+
frame.set(header);
|
116
|
+
sentIntro = true;
|
117
|
+
}
|
118
|
+
frame.writeUInt8(data.byteLength >> 16, introSize);
|
119
|
+
frame.writeUInt16BE(65535 & data.byteLength, introSize + 1);
|
120
|
+
frame.set(data, introSize + 3);
|
121
|
+
return frame;
|
122
|
+
},
|
123
|
+
decodeFrame: async (newData, onFrame) => {
|
124
|
+
var _a;
|
125
|
+
// the binary protocol uses its own framing mechanism
|
126
|
+
// on top of the WS frames
|
127
|
+
// so we get this data and separate out the frames
|
128
|
+
const getBytesSize = () => {
|
129
|
+
if (inBytes.length >= 3) {
|
130
|
+
return (inBytes.readUInt8() << 16) | inBytes.readUInt16BE(1);
|
131
|
+
}
|
132
|
+
};
|
133
|
+
inBytes = Buffer.concat([inBytes, newData]);
|
134
|
+
logger.trace(`recv ${newData.length} bytes, total recv ${inBytes.length} bytes`);
|
135
|
+
let size = getBytesSize();
|
136
|
+
while (size && inBytes.length >= size + 3) {
|
137
|
+
let frame = inBytes.slice(3, size + 3);
|
138
|
+
inBytes = inBytes.slice(size + 3);
|
139
|
+
if (isFinished) {
|
140
|
+
const result = decrypt(frame);
|
141
|
+
frame = await (0, WABinary_1.decodeBinaryNode)(result);
|
142
|
+
}
|
143
|
+
logger.trace({ msg: (_a = frame === null || frame === void 0 ? void 0 : frame.attrs) === null || _a === void 0 ? void 0 : _a.id }, 'recv frame');
|
144
|
+
onFrame(frame);
|
145
|
+
size = getBytesSize();
|
146
|
+
}
|
147
|
+
}
|
148
|
+
};
|
149
|
+
};
|
150
|
+
exports.makeNoiseHandler = makeNoiseHandler;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
2
|
+
import { proto } from '../../WAProto';
|
3
|
+
import { AuthenticationCreds, BaileysEventEmitter, CacheStore, SignalKeyStoreWithTransaction, SocketConfig } from '../Types';
|
4
|
+
import { ILogger } from './logger';
|
5
|
+
type ProcessMessageContext = {
|
6
|
+
shouldProcessHistoryMsg: boolean;
|
7
|
+
placeholderResendCache?: CacheStore;
|
8
|
+
creds: AuthenticationCreds;
|
9
|
+
keyStore: SignalKeyStoreWithTransaction;
|
10
|
+
ev: BaileysEventEmitter;
|
11
|
+
getMessage: SocketConfig['getMessage'];
|
12
|
+
logger?: ILogger;
|
13
|
+
options: AxiosRequestConfig<{}>;
|
14
|
+
};
|
15
|
+
/** Cleans a received message to further processing */
|
16
|
+
export declare const cleanMessage: (message: proto.IWebMessageInfo, meId: string) => void;
|
17
|
+
export declare const isRealMessage: (message: proto.IWebMessageInfo, meId: string) => boolean | undefined;
|
18
|
+
export declare const shouldIncrementChatUnread: (message: proto.IWebMessageInfo) => boolean;
|
19
|
+
/**
|
20
|
+
* Get the ID of the chat from the given key.
|
21
|
+
* Typically -- that'll be the remoteJid, but for broadcasts, it'll be the participant
|
22
|
+
*/
|
23
|
+
export declare const getChatId: ({ remoteJid, participant, fromMe }: proto.IMessageKey) => string;
|
24
|
+
type PollContext = {
|
25
|
+
/** normalised jid of the person that created the poll */
|
26
|
+
pollCreatorJid: string;
|
27
|
+
/** ID of the poll creation message */
|
28
|
+
pollMsgId: string;
|
29
|
+
/** poll creation message enc key */
|
30
|
+
pollEncKey: Uint8Array;
|
31
|
+
/** jid of the person that voted */
|
32
|
+
voterJid: string;
|
33
|
+
};
|
34
|
+
/**
|
35
|
+
* Decrypt a poll vote
|
36
|
+
* @param vote encrypted vote
|
37
|
+
* @param ctx additional info about the poll required for decryption
|
38
|
+
* @returns list of SHA256 options
|
39
|
+
*/
|
40
|
+
export declare function decryptPollVote({ encPayload, encIv }: proto.Message.IPollEncValue, { pollCreatorJid, pollMsgId, pollEncKey, voterJid, }: PollContext): proto.Message.PollVoteMessage;
|
41
|
+
declare const processMessage: (message: proto.IWebMessageInfo, { shouldProcessHistoryMsg, placeholderResendCache, ev, creds, keyStore, logger, options, getMessage }: ProcessMessageContext) => Promise<void>;
|
42
|
+
export default processMessage;
|
@@ -0,0 +1,373 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.decryptPollVote = exports.getChatId = exports.shouldIncrementChatUnread = exports.isRealMessage = exports.cleanMessage = void 0;
|
4
|
+
const WAProto_1 = require("../../WAProto");
|
5
|
+
const Types_1 = require("../Types");
|
6
|
+
const messages_1 = require("../Utils/messages");
|
7
|
+
const WABinary_1 = require("../WABinary");
|
8
|
+
const crypto_1 = require("./crypto");
|
9
|
+
const generics_1 = require("./generics");
|
10
|
+
const history_1 = require("./history");
|
11
|
+
const REAL_MSG_STUB_TYPES = new Set([
|
12
|
+
Types_1.WAMessageStubType.CALL_MISSED_GROUP_VIDEO,
|
13
|
+
Types_1.WAMessageStubType.CALL_MISSED_GROUP_VOICE,
|
14
|
+
Types_1.WAMessageStubType.CALL_MISSED_VIDEO,
|
15
|
+
Types_1.WAMessageStubType.CALL_MISSED_VOICE
|
16
|
+
]);
|
17
|
+
const REAL_MSG_REQ_ME_STUB_TYPES = new Set([
|
18
|
+
Types_1.WAMessageStubType.GROUP_PARTICIPANT_ADD
|
19
|
+
]);
|
20
|
+
/** Cleans a received message to further processing */
|
21
|
+
const cleanMessage = (message, meId) => {
|
22
|
+
// ensure remoteJid and participant doesn't have device or agent in it
|
23
|
+
message.key.remoteJid = (0, WABinary_1.jidNormalizedUser)(message.key.remoteJid);
|
24
|
+
message.key.participant = message.key.participant ? (0, WABinary_1.jidNormalizedUser)(message.key.participant) : undefined;
|
25
|
+
const content = (0, messages_1.normalizeMessageContent)(message.message);
|
26
|
+
// if the message has a reaction, ensure fromMe & remoteJid are from our perspective
|
27
|
+
if (content === null || content === void 0 ? void 0 : content.reactionMessage) {
|
28
|
+
normaliseKey(content.reactionMessage.key);
|
29
|
+
}
|
30
|
+
if (content === null || content === void 0 ? void 0 : content.pollUpdateMessage) {
|
31
|
+
normaliseKey(content.pollUpdateMessage.pollCreationMessageKey);
|
32
|
+
}
|
33
|
+
function normaliseKey(msgKey) {
|
34
|
+
// if the reaction is from another user
|
35
|
+
// we've to correctly map the key to this user's perspective
|
36
|
+
if (!message.key.fromMe) {
|
37
|
+
// if the sender believed the message being reacted to is not from them
|
38
|
+
// we've to correct the key to be from them, or some other participant
|
39
|
+
msgKey.fromMe = !msgKey.fromMe
|
40
|
+
? (0, WABinary_1.areJidsSameUser)(msgKey.participant || msgKey.remoteJid, meId)
|
41
|
+
// if the message being reacted to, was from them
|
42
|
+
// fromMe automatically becomes false
|
43
|
+
: false;
|
44
|
+
// set the remoteJid to being the same as the chat the message came from
|
45
|
+
msgKey.remoteJid = message.key.remoteJid;
|
46
|
+
// set participant of the message
|
47
|
+
msgKey.participant = msgKey.participant || message.key.participant;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
};
|
51
|
+
exports.cleanMessage = cleanMessage;
|
52
|
+
const isRealMessage = (message, meId) => {
|
53
|
+
var _a;
|
54
|
+
const normalizedContent = (0, messages_1.normalizeMessageContent)(message.message);
|
55
|
+
const hasSomeContent = !!(0, messages_1.getContentType)(normalizedContent);
|
56
|
+
return (!!normalizedContent
|
57
|
+
|| REAL_MSG_STUB_TYPES.has(message.messageStubType)
|
58
|
+
|| (REAL_MSG_REQ_ME_STUB_TYPES.has(message.messageStubType)
|
59
|
+
&& ((_a = message.messageStubParameters) === null || _a === void 0 ? void 0 : _a.some(p => (0, WABinary_1.areJidsSameUser)(meId, p)))))
|
60
|
+
&& hasSomeContent
|
61
|
+
&& !(normalizedContent === null || normalizedContent === void 0 ? void 0 : normalizedContent.protocolMessage)
|
62
|
+
&& !(normalizedContent === null || normalizedContent === void 0 ? void 0 : normalizedContent.reactionMessage)
|
63
|
+
&& !(normalizedContent === null || normalizedContent === void 0 ? void 0 : normalizedContent.pollUpdateMessage);
|
64
|
+
};
|
65
|
+
exports.isRealMessage = isRealMessage;
|
66
|
+
const shouldIncrementChatUnread = (message) => (!message.key.fromMe && !message.messageStubType);
|
67
|
+
exports.shouldIncrementChatUnread = shouldIncrementChatUnread;
|
68
|
+
/**
|
69
|
+
* Get the ID of the chat from the given key.
|
70
|
+
* Typically -- that'll be the remoteJid, but for broadcasts, it'll be the participant
|
71
|
+
*/
|
72
|
+
const getChatId = ({ remoteJid, participant, fromMe }) => {
|
73
|
+
if ((0, WABinary_1.isJidBroadcast)(remoteJid)
|
74
|
+
&& !(0, WABinary_1.isJidStatusBroadcast)(remoteJid)
|
75
|
+
&& !fromMe) {
|
76
|
+
return participant;
|
77
|
+
}
|
78
|
+
return remoteJid;
|
79
|
+
};
|
80
|
+
exports.getChatId = getChatId;
|
81
|
+
/**
|
82
|
+
* Decrypt a poll vote
|
83
|
+
* @param vote encrypted vote
|
84
|
+
* @param ctx additional info about the poll required for decryption
|
85
|
+
* @returns list of SHA256 options
|
86
|
+
*/
|
87
|
+
function decryptPollVote({ encPayload, encIv }, { pollCreatorJid, pollMsgId, pollEncKey, voterJid, }) {
|
88
|
+
const sign = Buffer.concat([
|
89
|
+
toBinary(pollMsgId),
|
90
|
+
toBinary(pollCreatorJid),
|
91
|
+
toBinary(voterJid),
|
92
|
+
toBinary('Poll Vote'),
|
93
|
+
new Uint8Array([1])
|
94
|
+
]);
|
95
|
+
const key0 = (0, crypto_1.hmacSign)(pollEncKey, new Uint8Array(32), 'sha256');
|
96
|
+
const decKey = (0, crypto_1.hmacSign)(sign, key0, 'sha256');
|
97
|
+
const aad = toBinary(`${pollMsgId}\u0000${voterJid}`);
|
98
|
+
const decrypted = (0, crypto_1.aesDecryptGCM)(encPayload, decKey, encIv, aad);
|
99
|
+
return WAProto_1.proto.Message.PollVoteMessage.decode(decrypted);
|
100
|
+
function toBinary(txt) {
|
101
|
+
return Buffer.from(txt);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
exports.decryptPollVote = decryptPollVote;
|
105
|
+
const processMessage = async (message, { shouldProcessHistoryMsg, placeholderResendCache, ev, creds, keyStore, logger, options, getMessage }) => {
|
106
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
107
|
+
const meId = creds.me.id;
|
108
|
+
const { accountSettings } = creds;
|
109
|
+
const chat = { id: (0, WABinary_1.jidNormalizedUser)((0, exports.getChatId)(message.key)) };
|
110
|
+
const isRealMsg = (0, exports.isRealMessage)(message, meId);
|
111
|
+
if (isRealMsg) {
|
112
|
+
chat.messages = [{ message }];
|
113
|
+
chat.conversationTimestamp = (0, generics_1.toNumber)(message.messageTimestamp);
|
114
|
+
// only increment unread count if not CIPHERTEXT and from another person
|
115
|
+
if ((0, exports.shouldIncrementChatUnread)(message)) {
|
116
|
+
chat.unreadCount = (chat.unreadCount || 0) + 1;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
const content = (0, messages_1.normalizeMessageContent)(message.message);
|
120
|
+
// unarchive chat if it's a real message, or someone reacted to our message
|
121
|
+
// and we've the unarchive chats setting on
|
122
|
+
if ((isRealMsg || ((_b = (_a = content === null || content === void 0 ? void 0 : content.reactionMessage) === null || _a === void 0 ? void 0 : _a.key) === null || _b === void 0 ? void 0 : _b.fromMe))
|
123
|
+
&& (accountSettings === null || accountSettings === void 0 ? void 0 : accountSettings.unarchiveChats)) {
|
124
|
+
chat.archived = false;
|
125
|
+
chat.readOnly = false;
|
126
|
+
}
|
127
|
+
const protocolMsg = content === null || content === void 0 ? void 0 : content.protocolMessage;
|
128
|
+
if (protocolMsg) {
|
129
|
+
switch (protocolMsg.type) {
|
130
|
+
case WAProto_1.proto.Message.ProtocolMessage.Type.HISTORY_SYNC_NOTIFICATION:
|
131
|
+
const histNotification = protocolMsg.historySyncNotification;
|
132
|
+
const process = shouldProcessHistoryMsg;
|
133
|
+
const isLatest = !((_c = creds.processedHistoryMessages) === null || _c === void 0 ? void 0 : _c.length);
|
134
|
+
logger === null || logger === void 0 ? void 0 : logger.info({
|
135
|
+
histNotification,
|
136
|
+
process,
|
137
|
+
id: message.key.id,
|
138
|
+
isLatest,
|
139
|
+
}, 'got history notification');
|
140
|
+
if (process) {
|
141
|
+
if (histNotification.syncType !== WAProto_1.proto.HistorySync.HistorySyncType.ON_DEMAND) {
|
142
|
+
ev.emit('creds.update', {
|
143
|
+
processedHistoryMessages: [
|
144
|
+
...(creds.processedHistoryMessages || []),
|
145
|
+
{ key: message.key, messageTimestamp: message.messageTimestamp }
|
146
|
+
]
|
147
|
+
});
|
148
|
+
}
|
149
|
+
const data = await (0, history_1.downloadAndProcessHistorySyncNotification)(histNotification, options);
|
150
|
+
ev.emit('messaging-history.set', {
|
151
|
+
...data,
|
152
|
+
isLatest: histNotification.syncType !== WAProto_1.proto.HistorySync.HistorySyncType.ON_DEMAND
|
153
|
+
? isLatest
|
154
|
+
: undefined,
|
155
|
+
peerDataRequestSessionId: histNotification.peerDataRequestSessionId
|
156
|
+
});
|
157
|
+
}
|
158
|
+
break;
|
159
|
+
case WAProto_1.proto.Message.ProtocolMessage.Type.APP_STATE_SYNC_KEY_SHARE:
|
160
|
+
const keys = protocolMsg.appStateSyncKeyShare.keys;
|
161
|
+
if (keys === null || keys === void 0 ? void 0 : keys.length) {
|
162
|
+
let newAppStateSyncKeyId = '';
|
163
|
+
await keyStore.transaction(async () => {
|
164
|
+
const newKeys = [];
|
165
|
+
for (const { keyData, keyId } of keys) {
|
166
|
+
const strKeyId = Buffer.from(keyId.keyId).toString('base64');
|
167
|
+
newKeys.push(strKeyId);
|
168
|
+
await keyStore.set({ 'app-state-sync-key': { [strKeyId]: keyData } });
|
169
|
+
newAppStateSyncKeyId = strKeyId;
|
170
|
+
}
|
171
|
+
logger === null || logger === void 0 ? void 0 : logger.info({ newAppStateSyncKeyId, newKeys }, 'injecting new app state sync keys');
|
172
|
+
});
|
173
|
+
ev.emit('creds.update', { myAppStateKeyId: newAppStateSyncKeyId });
|
174
|
+
}
|
175
|
+
else {
|
176
|
+
logger === null || logger === void 0 ? void 0 : logger.info({ protocolMsg }, 'recv app state sync with 0 keys');
|
177
|
+
}
|
178
|
+
break;
|
179
|
+
case WAProto_1.proto.Message.ProtocolMessage.Type.REVOKE:
|
180
|
+
ev.emit('messages.update', [
|
181
|
+
{
|
182
|
+
key: {
|
183
|
+
...message.key,
|
184
|
+
id: protocolMsg.key.id
|
185
|
+
},
|
186
|
+
update: { message: null, messageStubType: Types_1.WAMessageStubType.REVOKE, key: message.key }
|
187
|
+
}
|
188
|
+
]);
|
189
|
+
break;
|
190
|
+
case WAProto_1.proto.Message.ProtocolMessage.Type.EPHEMERAL_SETTING:
|
191
|
+
Object.assign(chat, {
|
192
|
+
ephemeralSettingTimestamp: (0, generics_1.toNumber)(message.messageTimestamp),
|
193
|
+
ephemeralExpiration: protocolMsg.ephemeralExpiration || null
|
194
|
+
});
|
195
|
+
break;
|
196
|
+
case WAProto_1.proto.Message.ProtocolMessage.Type.PEER_DATA_OPERATION_REQUEST_RESPONSE_MESSAGE:
|
197
|
+
const response = protocolMsg.peerDataOperationRequestResponseMessage;
|
198
|
+
if (response) {
|
199
|
+
placeholderResendCache === null || placeholderResendCache === void 0 ? void 0 : placeholderResendCache.del(response.stanzaId);
|
200
|
+
// TODO: IMPLEMENT HISTORY SYNC ETC (sticker uploads etc.).
|
201
|
+
const { peerDataOperationResult } = response;
|
202
|
+
for (const result of peerDataOperationResult) {
|
203
|
+
const { placeholderMessageResendResponse: retryResponse } = result;
|
204
|
+
//eslint-disable-next-line max-depth
|
205
|
+
if (retryResponse) {
|
206
|
+
const webMessageInfo = WAProto_1.proto.WebMessageInfo.decode(retryResponse.webMessageInfoBytes);
|
207
|
+
// wait till another upsert event is available, don't want it to be part of the PDO response message
|
208
|
+
setTimeout(() => {
|
209
|
+
ev.emit('messages.upsert', {
|
210
|
+
messages: [webMessageInfo],
|
211
|
+
type: 'notify',
|
212
|
+
requestId: response.stanzaId
|
213
|
+
});
|
214
|
+
}, 500);
|
215
|
+
}
|
216
|
+
}
|
217
|
+
}
|
218
|
+
case WAProto_1.proto.Message.ProtocolMessage.Type.MESSAGE_EDIT:
|
219
|
+
ev.emit('messages.update', [
|
220
|
+
{
|
221
|
+
// flip the sender / fromMe properties because they're in the perspective of the sender
|
222
|
+
key: { ...message.key, id: (_d = protocolMsg.key) === null || _d === void 0 ? void 0 : _d.id },
|
223
|
+
update: {
|
224
|
+
message: {
|
225
|
+
editedMessage: {
|
226
|
+
message: protocolMsg.editedMessage
|
227
|
+
}
|
228
|
+
},
|
229
|
+
messageTimestamp: protocolMsg.timestampMs
|
230
|
+
? Math.floor((0, generics_1.toNumber)(protocolMsg.timestampMs) / 1000)
|
231
|
+
: message.messageTimestamp
|
232
|
+
}
|
233
|
+
}
|
234
|
+
]);
|
235
|
+
break;
|
236
|
+
}
|
237
|
+
}
|
238
|
+
else if (content === null || content === void 0 ? void 0 : content.reactionMessage) {
|
239
|
+
const reaction = {
|
240
|
+
...content.reactionMessage,
|
241
|
+
key: message.key,
|
242
|
+
};
|
243
|
+
ev.emit('messages.reaction', [{
|
244
|
+
reaction,
|
245
|
+
key: (_e = content.reactionMessage) === null || _e === void 0 ? void 0 : _e.key,
|
246
|
+
}]);
|
247
|
+
}
|
248
|
+
else if (message.messageStubType) {
|
249
|
+
const jid = (_f = message.key) === null || _f === void 0 ? void 0 : _f.remoteJid;
|
250
|
+
//let actor = whatsappID (message.participant)
|
251
|
+
let participants;
|
252
|
+
const emitParticipantsUpdate = (action) => (ev.emit('group-participants.update', { id: jid, author: message.participant, participants, action }));
|
253
|
+
const emitGroupUpdate = (update) => {
|
254
|
+
var _a;
|
255
|
+
ev.emit('groups.update', [{ id: jid, ...update, author: (_a = message.participant) !== null && _a !== void 0 ? _a : undefined }]);
|
256
|
+
};
|
257
|
+
const emitGroupRequestJoin = (participant, action, method) => {
|
258
|
+
ev.emit('group.join-request', { id: jid, author: message.participant, participant, action, method: method });
|
259
|
+
};
|
260
|
+
const participantsIncludesMe = () => participants.find(jid => (0, WABinary_1.areJidsSameUser)(meId, jid));
|
261
|
+
switch (message.messageStubType) {
|
262
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_CHANGE_NUMBER:
|
263
|
+
participants = message.messageStubParameters || [];
|
264
|
+
emitParticipantsUpdate('modify');
|
265
|
+
break;
|
266
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_LEAVE:
|
267
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_REMOVE:
|
268
|
+
participants = message.messageStubParameters || [];
|
269
|
+
emitParticipantsUpdate('remove');
|
270
|
+
// mark the chat read only if you left the group
|
271
|
+
if (participantsIncludesMe()) {
|
272
|
+
chat.readOnly = true;
|
273
|
+
}
|
274
|
+
break;
|
275
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_ADD:
|
276
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_INVITE:
|
277
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_ADD_REQUEST_JOIN:
|
278
|
+
participants = message.messageStubParameters || [];
|
279
|
+
if (participantsIncludesMe()) {
|
280
|
+
chat.readOnly = false;
|
281
|
+
}
|
282
|
+
emitParticipantsUpdate('add');
|
283
|
+
break;
|
284
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_DEMOTE:
|
285
|
+
participants = message.messageStubParameters || [];
|
286
|
+
emitParticipantsUpdate('demote');
|
287
|
+
break;
|
288
|
+
case Types_1.WAMessageStubType.GROUP_PARTICIPANT_PROMOTE:
|
289
|
+
participants = message.messageStubParameters || [];
|
290
|
+
emitParticipantsUpdate('promote');
|
291
|
+
break;
|
292
|
+
case Types_1.WAMessageStubType.GROUP_CHANGE_ANNOUNCE:
|
293
|
+
const announceValue = (_g = message.messageStubParameters) === null || _g === void 0 ? void 0 : _g[0];
|
294
|
+
emitGroupUpdate({ announce: announceValue === 'true' || announceValue === 'on' });
|
295
|
+
break;
|
296
|
+
case Types_1.WAMessageStubType.GROUP_CHANGE_RESTRICT:
|
297
|
+
const restrictValue = (_h = message.messageStubParameters) === null || _h === void 0 ? void 0 : _h[0];
|
298
|
+
emitGroupUpdate({ restrict: restrictValue === 'true' || restrictValue === 'on' });
|
299
|
+
break;
|
300
|
+
case Types_1.WAMessageStubType.GROUP_CHANGE_SUBJECT:
|
301
|
+
const name = (_j = message.messageStubParameters) === null || _j === void 0 ? void 0 : _j[0];
|
302
|
+
chat.name = name;
|
303
|
+
emitGroupUpdate({ subject: name });
|
304
|
+
break;
|
305
|
+
case Types_1.WAMessageStubType.GROUP_CHANGE_DESCRIPTION:
|
306
|
+
const description = (_k = message.messageStubParameters) === null || _k === void 0 ? void 0 : _k[0];
|
307
|
+
chat.description = description;
|
308
|
+
emitGroupUpdate({ desc: description });
|
309
|
+
break;
|
310
|
+
case Types_1.WAMessageStubType.GROUP_CHANGE_INVITE_LINK:
|
311
|
+
const code = (_l = message.messageStubParameters) === null || _l === void 0 ? void 0 : _l[0];
|
312
|
+
emitGroupUpdate({ inviteCode: code });
|
313
|
+
break;
|
314
|
+
case Types_1.WAMessageStubType.GROUP_MEMBER_ADD_MODE:
|
315
|
+
const memberAddValue = (_m = message.messageStubParameters) === null || _m === void 0 ? void 0 : _m[0];
|
316
|
+
emitGroupUpdate({ memberAddMode: memberAddValue === 'all_member_add' });
|
317
|
+
break;
|
318
|
+
case Types_1.WAMessageStubType.GROUP_MEMBERSHIP_JOIN_APPROVAL_MODE:
|
319
|
+
const approvalMode = (_o = message.messageStubParameters) === null || _o === void 0 ? void 0 : _o[0];
|
320
|
+
emitGroupUpdate({ joinApprovalMode: approvalMode === 'on' });
|
321
|
+
break;
|
322
|
+
case Types_1.WAMessageStubType.GROUP_MEMBERSHIP_JOIN_APPROVAL_REQUEST_NON_ADMIN_ADD:
|
323
|
+
const participant = (_p = message.messageStubParameters) === null || _p === void 0 ? void 0 : _p[0];
|
324
|
+
const action = (_q = message.messageStubParameters) === null || _q === void 0 ? void 0 : _q[1];
|
325
|
+
const method = (_r = message.messageStubParameters) === null || _r === void 0 ? void 0 : _r[2];
|
326
|
+
emitGroupRequestJoin(participant, action, method);
|
327
|
+
break;
|
328
|
+
}
|
329
|
+
}
|
330
|
+
else if (content === null || content === void 0 ? void 0 : content.pollUpdateMessage) {
|
331
|
+
const creationMsgKey = content.pollUpdateMessage.pollCreationMessageKey;
|
332
|
+
// we need to fetch the poll creation message to get the poll enc key
|
333
|
+
const pollMsg = await getMessage(creationMsgKey);
|
334
|
+
if (pollMsg) {
|
335
|
+
const meIdNormalised = (0, WABinary_1.jidNormalizedUser)(meId);
|
336
|
+
const pollCreatorJid = (0, generics_1.getKeyAuthor)(creationMsgKey, meIdNormalised);
|
337
|
+
const voterJid = (0, generics_1.getKeyAuthor)(message.key, meIdNormalised);
|
338
|
+
const pollEncKey = (_s = pollMsg.messageContextInfo) === null || _s === void 0 ? void 0 : _s.messageSecret;
|
339
|
+
try {
|
340
|
+
const voteMsg = decryptPollVote(content.pollUpdateMessage.vote, {
|
341
|
+
pollEncKey,
|
342
|
+
pollCreatorJid,
|
343
|
+
pollMsgId: creationMsgKey.id,
|
344
|
+
voterJid,
|
345
|
+
});
|
346
|
+
ev.emit('messages.update', [
|
347
|
+
{
|
348
|
+
key: creationMsgKey,
|
349
|
+
update: {
|
350
|
+
pollUpdates: [
|
351
|
+
{
|
352
|
+
pollUpdateMessageKey: message.key,
|
353
|
+
vote: voteMsg,
|
354
|
+
senderTimestampMs: content.pollUpdateMessage.senderTimestampMs.toNumber(),
|
355
|
+
}
|
356
|
+
]
|
357
|
+
}
|
358
|
+
}
|
359
|
+
]);
|
360
|
+
}
|
361
|
+
catch (err) {
|
362
|
+
logger === null || logger === void 0 ? void 0 : logger.warn({ err, creationMsgKey }, 'failed to decrypt poll vote');
|
363
|
+
}
|
364
|
+
}
|
365
|
+
else {
|
366
|
+
logger === null || logger === void 0 ? void 0 : logger.warn({ creationMsgKey }, 'poll creation message not found, cannot decrypt update');
|
367
|
+
}
|
368
|
+
}
|
369
|
+
if (Object.keys(chat).length > 1) {
|
370
|
+
ev.emit('chats.update', [chat]);
|
371
|
+
}
|
372
|
+
};
|
373
|
+
exports.default = processMessage;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { SignalRepository } from '../Types';
|
2
|
+
import { AuthenticationCreds, AuthenticationState, KeyPair, SignalIdentity, SignalKeyStore, SignedKeyPair } from '../Types/Auth';
|
3
|
+
import { BinaryNode, JidWithDevice } from '../WABinary';
|
4
|
+
import { USyncQueryResultList } from '../WAUSync';
|
5
|
+
export declare const createSignalIdentity: (wid: string, accountSignatureKey: Uint8Array) => SignalIdentity;
|
6
|
+
export declare const getPreKeys: ({ get }: SignalKeyStore, min: number, limit: number) => Promise<{
|
7
|
+
[id: string]: KeyPair;
|
8
|
+
}>;
|
9
|
+
export declare const generateOrGetPreKeys: (creds: AuthenticationCreds, range: number) => {
|
10
|
+
newPreKeys: {
|
11
|
+
[id: number]: KeyPair;
|
12
|
+
};
|
13
|
+
lastPreKeyId: number;
|
14
|
+
preKeysRange: readonly [number, number];
|
15
|
+
};
|
16
|
+
export declare const xmppSignedPreKey: (key: SignedKeyPair) => BinaryNode;
|
17
|
+
export declare const xmppPreKey: (pair: KeyPair, id: number) => BinaryNode;
|
18
|
+
export declare const parseAndInjectE2ESessions: (node: BinaryNode, repository: SignalRepository) => Promise<void>;
|
19
|
+
export declare const extractDeviceJids: (result: USyncQueryResultList[], myJid: string, excludeZeroDevices: boolean) => JidWithDevice[];
|
20
|
+
/**
|
21
|
+
* get the next N keys for upload or processing
|
22
|
+
* @param count number of pre-keys to get or generate
|
23
|
+
*/
|
24
|
+
export declare const getNextPreKeys: ({ creds, keys }: AuthenticationState, count: number) => Promise<{
|
25
|
+
update: Partial<AuthenticationCreds>;
|
26
|
+
preKeys: {
|
27
|
+
[id: string]: KeyPair;
|
28
|
+
};
|
29
|
+
}>;
|
30
|
+
export declare const getNextPreKeysNode: (state: AuthenticationState, count: number) => Promise<{
|
31
|
+
update: Partial<AuthenticationCreds>;
|
32
|
+
node: BinaryNode;
|
33
|
+
}>;
|