@nexustechpro/baileys 1.1.5 → 1.1.9

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.
@@ -0,0 +1,3 @@
1
+ yarn pbjs -t static-module --no-beautify -w es6 --no-bundle --no-delimited --no-verify --no-comments -o ./index.js ./WAProto.proto;
2
+ yarn pbjs -t static-module --no-beautify -w es6 --no-bundle --no-delimited --no-verify ./WAProto.proto | yarn pbts --no-comments -o ./index.d.ts -;
3
+ node ./fix-imports.js
@@ -0,0 +1,3 @@
1
+ {
2
+ "version": [2, 3000, 1027934701]
3
+ }
@@ -1,151 +1,173 @@
1
- import { proto } from '../../WAProto/index.js'
2
- import { makeLibSignalRepository } from '../Signal/libsignal.js'
3
- import { Browsers } from '../Utils/browser-utils.js'
4
- import logger from '../Utils/logger.js'
1
+ import { createHash } from 'crypto';
2
+ import { createRequire } from 'module';
3
+ import { proto } from '../../WAProto/index.js';
4
+ import { makeLibSignalRepository } from '../Signal/libsignal.js';
5
+ import { Browsers } from '../Utils/browser-utils.js';
6
+ import logger from '../Utils/logger.js';
7
+ const require = createRequire(import.meta.url);
8
+ const PHONENUMBER_MCC = require('./phonenumber-mcc.json');
9
+ export { PHONENUMBER_MCC };
10
+ const version = [2, 3000, 1027934701];
5
11
 
6
- const version = [2, 3000, 1033105955]
12
+ export const UNAUTHORIZED_CODES = [401, 403, 419];
7
13
 
8
- export const UNAUTHORIZED_CODES = [401, 403, 419]
14
+ export const DEFAULT_ORIGIN = 'https://web.whatsapp.com';
15
+ export const CALL_VIDEO_PREFIX = 'https://call.whatsapp.com/video/';
16
+ export const CALL_AUDIO_PREFIX = 'https://call.whatsapp.com/voice/';
17
+ export const DEF_CALLBACK_PREFIX = 'CB:';
18
+ export const DEF_TAG_PREFIX = 'TAG:';
19
+ export const PHONE_CONNECTION_CB = 'CB:Pong';
9
20
 
10
- export const DEFAULT_ORIGIN = 'https://web.whatsapp.com'
11
- export const CALL_VIDEO_PREFIX = 'https://call.whatsapp.com/video/'
12
- export const CALL_AUDIO_PREFIX = 'https://call.whatsapp.com/voice/'
13
- export const DEF_CALLBACK_PREFIX = 'CB:'
14
- export const DEF_TAG_PREFIX = 'TAG:'
15
- export const PHONE_CONNECTION_CB = 'CB:Pong'
21
+ export const WA_ADV_ACCOUNT_SIG_PREFIX = Buffer.from([6, 0]);
22
+ export const WA_ADV_DEVICE_SIG_PREFIX = Buffer.from([6, 1]);
23
+ export const WA_ADV_HOSTED_ACCOUNT_SIG_PREFIX = Buffer.from([6, 5]);
24
+ export const WA_ADV_HOSTED_DEVICE_SIG_PREFIX = Buffer.from([6, 6]);
16
25
 
17
- export const WA_ADV_ACCOUNT_SIG_PREFIX = Buffer.from([6, 0])
18
- export const WA_ADV_DEVICE_SIG_PREFIX = Buffer.from([6, 1])
19
- export const WA_ADV_HOSTED_ACCOUNT_SIG_PREFIX = Buffer.from([6, 5])
20
- export const WA_ADV_HOSTED_DEVICE_SIG_PREFIX = Buffer.from([6, 6])
26
+ export const WA_DEFAULT_EPHEMERAL = 7 * 24 * 60 * 60;
21
27
 
22
- export const WA_DEFAULT_EPHEMERAL = 7 * 24 * 60 * 60
28
+ export const STATUS_EXPIRY_SECONDS = 24 * 60 * 60;
23
29
 
24
- export const STATUS_EXPIRY_SECONDS = 24 * 60 * 60
30
+ export const PLACEHOLDER_MAX_AGE_SECONDS = 14 * 24 * 60 * 60;
25
31
 
26
- export const PLACEHOLDER_MAX_AGE_SECONDS = 14 * 24 * 60 * 60
32
+ export const BATCH_SIZE = 500;
27
33
 
28
- export const BATCH_SIZE = 500
34
+ export const NOISE_MODE = 'Noise_XX_25519_AESGCM_SHA256\0\0\0\0';
35
+ export const DICT_VERSION = 3;
36
+ export const KEY_BUNDLE_TYPE = Buffer.from([5]);
37
+ export const NOISE_WA_HEADER = Buffer.from([87, 65, 6, DICT_VERSION]);
29
38
 
30
- export const NOISE_MODE = 'Noise_XX_25519_AESGCM_SHA256\0\0\0\0'
31
- export const DICT_VERSION = 3
32
- export const KEY_BUNDLE_TYPE = Buffer.from([5])
33
- export const NOISE_WA_HEADER = Buffer.from([87, 65, 6, DICT_VERSION])
34
-
35
- export const URL_REGEX = /https:\/\/(?![^:@\/\s]+:[^:@\/\s]+@)[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(:\d+)?(\/[^\s]*)?/g
39
+ export const URL_REGEX = /https:\/\/(?![^:@\/\s]+:[^:@\/\s]+@)[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}(:\d+)?(\/[^\s]*)?/g;
36
40
 
37
41
  export const WA_CERT_DETAILS = {
38
- SERIAL: 0,
39
- ISSUER: 'WhatsAppLongTerm1',
40
- PUBLIC_KEY: Buffer.from('142375574d0a587166aae71ebe516437c4a28b73e3695c6ce1f7f9545da8ee6b', 'hex')
41
- }
42
+ SERIAL: 0,
43
+ ISSUER: 'WhatsAppLongTerm1',
44
+ PUBLIC_KEY: Buffer.from('142375574d0a587166aae71ebe516437c4a28b73e3695c6ce1f7f9545da8ee6b', 'hex')
45
+ };
42
46
 
43
47
  export const PROCESSABLE_HISTORY_TYPES = [
44
- proto.HistorySync.HistorySyncType.INITIAL_BOOTSTRAP,
45
- proto.HistorySync.HistorySyncType.PUSH_NAME,
46
- proto.HistorySync.HistorySyncType.RECENT,
47
- proto.HistorySync.HistorySyncType.FULL,
48
- proto.HistorySync.HistorySyncType.ON_DEMAND,
49
- proto.HistorySync.HistorySyncType.NON_BLOCKING_DATA,
50
- proto.HistorySync.HistorySyncType.INITIAL_STATUS_V3
51
- ]
48
+ proto.HistorySync.HistorySyncType.INITIAL_BOOTSTRAP,
49
+ proto.HistorySync.HistorySyncType.PUSH_NAME,
50
+ proto.HistorySync.HistorySyncType.RECENT,
51
+ proto.HistorySync.HistorySyncType.FULL,
52
+ proto.HistorySync.HistorySyncType.ON_DEMAND,
53
+ proto.HistorySync.HistorySyncType.NON_BLOCKING_DATA,
54
+ proto.HistorySync.HistorySyncType.INITIAL_STATUS_V3
55
+ ];
56
+ export const MOBILE_ENDPOINT = 'g.whatsapp.net';
57
+ export const MOBILE_PORT = 443;
58
+
59
+ const WA_VERSION = '2.25.23.24';
60
+ const WA_VERSION_HASH = createHash('md5').update(WA_VERSION).digest('hex');
61
+
62
+ export const MOBILE_TOKEN = Buffer.from('0a1mLfGUIBVrMKF1RdvLI5lkRBvof6vn0fD2QRSM' + WA_VERSION_HASH);
63
+ export const MOBILE_REGISTRATION_ENDPOINT = 'https://v.whatsapp.net/v2';
64
+ export const MOBILE_USERAGENT = `WhatsApp/${WA_VERSION} iOS/17.5.1 Device/Apple-iPhone_13`;
65
+
66
+ export const REGISTRATION_PUBLIC_KEY = Buffer.from([
67
+ 5, 142, 140, 15, 116, 195, 235, 197, 215, 166, 134, 92, 108, 60, 132, 56, 86, 176, 97, 33, 204, 232, 234, 119, 77,
68
+ 34, 251, 111, 18, 37, 18, 48, 45,
69
+ ]);
70
+
71
+ export const PROTOCOL_VERSION = [5, 2];
72
+ export const MOBILE_NOISE_HEADER = Buffer.concat([Buffer.from('WA'), Buffer.from(PROTOCOL_VERSION)]);
73
+
52
74
 
53
75
  export const DEFAULT_CONNECTION_CONFIG = {
54
- version: version,
55
- browser: Browsers.macOS('Safari'),
56
- waWebSocketUrl: 'wss://web.whatsapp.com/ws/chat',
57
- connectTimeoutMs: 600000,
58
- keepAliveIntervalMs: 30000,
59
- logger: logger.child({ class: 'baileys' }),
60
- emitOwnEvents: true,
61
- defaultQueryTimeoutMs: 60000,
62
- customUploadHosts: [],
63
- retryRequestDelayMs: 250,
64
- maxMsgRetryCount: 5,
65
- fireInitQueries: true,
66
- auth: undefined,
67
- markOnlineOnConnect: true,
68
- syncFullHistory: true,
69
- patchMessageBeforeSending: msg => msg,
70
- shouldSyncHistoryMessage: ({ syncType }) => {
71
- return syncType !== proto.HistorySync.HistorySyncType.FULL
72
- },
73
- shouldIgnoreJid: () => false,
74
- linkPreviewImageThumbnailWidth: 192,
75
- transactionOpts: { maxCommitRetries: 10, delayBetweenTriesMs: 3000 },
76
- generateHighQualityLinkPreview: false,
77
- enableAutoSessionRecreation: true,
78
- enableRecentMessageCache: true,
79
- options: {},
80
- appStateMacVerification: {
81
- patch: false,
82
- snapshot: false
83
- },
84
- countryCode: 'US',
85
- getMessage: async () => undefined,
86
- cachedGroupMetadata: async () => undefined,
87
- makeSignalRepository: makeLibSignalRepository
88
- }
76
+ version,
77
+ browser: Browsers.macOS('Safari'),
78
+ waWebSocketUrl: 'wss://web.whatsapp.com/ws/chat',
79
+ connectTimeoutMs: 600000,
80
+ keepAliveIntervalMs: 30000,
81
+ logger: logger.child({ class: 'baileys' }),
82
+ emitOwnEvents: true,
83
+ defaultQueryTimeoutMs: 60000,
84
+ customUploadHosts: [],
85
+ retryRequestDelayMs: 250,
86
+ maxMsgRetryCount: 5,
87
+ fireInitQueries: true,
88
+ auth: undefined,
89
+ markOnlineOnConnect: true,
90
+ syncFullHistory: true,
91
+ patchMessageBeforeSending: msg => msg,
92
+ shouldSyncHistoryMessage: ({ syncType }) => {
93
+ return syncType !== proto.HistorySync.HistorySyncType.FULL;
94
+ },
95
+ shouldIgnoreJid: () => false,
96
+ linkPreviewImageThumbnailWidth: 192,
97
+ transactionOpts: { maxCommitRetries: 10, delayBetweenTriesMs: 3000 },
98
+ generateHighQualityLinkPreview: false,
99
+ enableAutoSessionRecreation: true,
100
+ enableRecentMessageCache: true,
101
+ options: {},
102
+ appStateMacVerification: {
103
+ patch: false,
104
+ snapshot: false
105
+ },
106
+ countryCode: 'US',
107
+ getMessage: async () => undefined,
108
+ cachedGroupMetadata: async () => undefined,
109
+ makeSignalRepository: makeLibSignalRepository
110
+ };
89
111
 
90
112
  export const MEDIA_PATH_MAP = {
91
- image: '/mms/image',
92
- video: '/mms/video',
93
- document: '/mms/document',
94
- audio: '/mms/audio',
95
- sticker: '/mms/image',
96
- 'sticker-pack': '/mms/sticker-pack',
97
- 'thumbnail-link': '/mms/image',
98
- 'thumbnail-sticker-pack': '/mms/thumbnail-sticker-pack',
99
- 'product-catalog-image': '/product/image',
100
- 'md-app-state': '',
101
- 'md-msg-hist': '/mms/md-app-state',
102
- 'biz-cover-photo': '/pps/biz-cover-photo'
103
- }
113
+ image: '/mms/image',
114
+ video: '/mms/video',
115
+ document: '/mms/document',
116
+ audio: '/mms/audio',
117
+ sticker: '/mms/image',
118
+ 'sticker-pack': '/mms/sticker-pack',
119
+ 'thumbnail-link': '/mms/image',
120
+ 'thumbnail-sticker-pack': '/mms/thumbnail-sticker-pack',
121
+ 'product-catalog-image': '/product/image',
122
+ 'md-app-state': '',
123
+ 'md-msg-hist': '/mms/md-app-state',
124
+ 'biz-cover-photo': '/pps/biz-cover-photo'
125
+ };
104
126
 
105
127
  export const MEDIA_HKDF_KEY_MAPPING = {
106
- audio: 'Audio',
107
- document: 'Document',
108
- gif: 'Video',
109
- image: 'Image',
110
- ppic: '',
111
- product: 'Image',
112
- ptt: 'Audio',
113
- 'sticker-pack-publisher': 'Sticker Pack Publisher',
114
- sticker: 'Image',
115
- 'sticker-pack': 'Sticker Pack',
116
- 'thumbnail-sticker-pack': 'Sticker Pack Thumbnail',
117
- video: 'Video',
118
- 'thumbnail-document': 'Document Thumbnail',
119
- 'thumbnail-image': 'Image Thumbnail',
120
- 'thumbnail-video': 'Video Thumbnail',
121
- 'thumbnail-link': 'Link Thumbnail',
122
- 'md-msg-hist': 'History',
123
- 'md-app-state': 'App State',
124
- 'product-catalog-image': '',
125
- 'payment-bg-image': 'Payment Background',
126
- ptv: 'Video',
127
- 'biz-cover-photo': 'Image'
128
- }
129
-
130
- export const MEDIA_KEYS = Object.keys(MEDIA_PATH_MAP)
131
-
132
- export const MIN_PREKEY_COUNT = 5
133
-
134
- export const INITIAL_PREKEY_COUNT = 95
135
-
136
- export const UPLOAD_TIMEOUT = 30000
137
- export const MIN_UPLOAD_INTERVAL = 5000
128
+ audio: 'Audio',
129
+ document: 'Document',
130
+ gif: 'Video',
131
+ image: 'Image',
132
+ ppic: '',
133
+ product: 'Image',
134
+ ptt: 'Audio',
135
+ 'sticker-pack-publisher': 'Sticker Pack Publisher',
136
+ sticker: 'Image',
137
+ 'sticker-pack': 'Sticker Pack',
138
+ 'thumbnail-sticker-pack': 'Sticker Pack Thumbnail',
139
+ video: 'Video',
140
+ 'thumbnail-document': 'Document Thumbnail',
141
+ 'thumbnail-image': 'Image Thumbnail',
142
+ 'thumbnail-video': 'Video Thumbnail',
143
+ 'thumbnail-link': 'Link Thumbnail',
144
+ 'md-msg-hist': 'History',
145
+ 'md-app-state': 'App State',
146
+ 'product-catalog-image': '',
147
+ 'payment-bg-image': 'Payment Background',
148
+ ptv: 'Video',
149
+ 'biz-cover-photo': 'Image'
150
+ };
151
+
152
+ export const MEDIA_KEYS = Object.keys(MEDIA_PATH_MAP);
153
+
154
+ export const MIN_PREKEY_COUNT = 5;
155
+
156
+ export const INITIAL_PREKEY_COUNT = 95;
157
+
158
+ export const UPLOAD_TIMEOUT = 30000;
159
+ export const MIN_UPLOAD_INTERVAL = 5000;
138
160
 
139
161
  export const DEFAULT_CACHE_TTLS = {
140
- SIGNAL_STORE: 5 * 60,
141
- MSG_RETRY: 60 * 60,
142
- CALL_OFFER: 5 * 60,
143
- USER_DEVICES: 5 * 60
144
- }
162
+ SIGNAL_STORE: 5 * 60,
163
+ MSG_RETRY: 60 * 60,
164
+ CALL_OFFER: 5 * 60,
165
+ USER_DEVICES: 5 * 60
166
+ };
145
167
 
146
168
  export const TimeMs = {
147
- Minute: 60 * 1000,
148
- Hour: 60 * 60 * 1000,
149
- Day: 24 * 60 * 60 * 1000,
150
- Week: 7 * 24 * 60 * 60 * 1000
151
- }
169
+ Minute: 60 * 1000,
170
+ Hour: 60 * 60 * 1000,
171
+ Day: 24 * 60 * 60 * 1000,
172
+ Week: 7 * 24 * 60 * 60 * 1000
173
+ };
@@ -0,0 +1,223 @@
1
+ {
2
+ "93": 412,
3
+ "355": 276,
4
+ "213": 603,
5
+ "1-684": 544,
6
+ "376": 213,
7
+ "244": 631,
8
+ "1-264": 365,
9
+ "1-268": 344,
10
+ "54": 722,
11
+ "374": 283,
12
+ "297": 363,
13
+ "61": 505,
14
+ "43": 232,
15
+ "994": 400,
16
+ "1-242": 364,
17
+ "973": 426,
18
+ "880": 470,
19
+ "1-246": 342,
20
+ "375": 257,
21
+ "32": 206,
22
+ "501": 702,
23
+ "229": 616,
24
+ "1-441": 350,
25
+ "975": 402,
26
+ "591": 736,
27
+ "387": 218,
28
+ "267": 652,
29
+ "55": 724,
30
+ "1-284": 348,
31
+ "673": 528,
32
+ "359": 284,
33
+ "226": 613,
34
+ "257": 642,
35
+ "855": 456,
36
+ "237": 624,
37
+ "238": 625,
38
+ "1-345": 346,
39
+ "236": 623,
40
+ "235": 622,
41
+ "56": 730,
42
+ "86": 454,
43
+ "57": 732,
44
+ "269": 654,
45
+ "682": 548,
46
+ "506": 712,
47
+ "385": 219,
48
+ "53": 368,
49
+ "357": 280,
50
+ "420": 230,
51
+ "243": 630,
52
+ "45": 238,
53
+ "253": 638,
54
+ "1-767": 366,
55
+ "1-809": 370,
56
+ "1-849": 370,
57
+ "1-829": 370,
58
+ "593": 740,
59
+ "20": 602,
60
+ "503": 706,
61
+ "240": 627,
62
+ "291": 657,
63
+ "372": 248,
64
+ "251": 636,
65
+ "500": 750,
66
+ "298": 288,
67
+ "679": 542,
68
+ "358": 244,
69
+ "33": 208,
70
+ "689": 547,
71
+ "241": 628,
72
+ "220": 607,
73
+ "995": 282,
74
+ "49": 262,
75
+ "233": 620,
76
+ "350": 266,
77
+ "30": 202,
78
+ "299": 290,
79
+ "1-473": 352,
80
+ "1-671": 535,
81
+ "502": 704,
82
+ "224": 537,
83
+ "592": 738,
84
+ "509": 372,
85
+ "504": 708,
86
+ "852": 454,
87
+ "36": 216,
88
+ "354": 274,
89
+ "91": 404,
90
+ "62": 510,
91
+ "98": 432,
92
+ "964": 418,
93
+ "353": 234,
94
+ "972": 425,
95
+ "39": 222,
96
+ "225": 612,
97
+ "1-876": 338,
98
+ "81": 440,
99
+ "962": 416,
100
+ "254": 639,
101
+ "686": 545,
102
+ "383": 221,
103
+ "965": 419,
104
+ "371": 247,
105
+ "961": 415,
106
+ "266": 651,
107
+ "231": 618,
108
+ "218": 606,
109
+ "423": 295,
110
+ "370": 246,
111
+ "352": 270,
112
+ "389": 294,
113
+ "261": 646,
114
+ "265": 650,
115
+ "60": 502,
116
+ "960": 472,
117
+ "223": 610,
118
+ "356": 278,
119
+ "692": 551,
120
+ "222": 609,
121
+ "230": 617,
122
+ "52": 334,
123
+ "691": 550,
124
+ "373": 259,
125
+ "377": 212,
126
+ "976": 428,
127
+ "382": 297,
128
+ "1-664": 354,
129
+ "212": 604,
130
+ "258": 643,
131
+ "95": 414,
132
+ "264": 649,
133
+ "674": 536,
134
+ "977": 429,
135
+ "31": 204,
136
+ "687": 546,
137
+ "64": 530,
138
+ "505": 710,
139
+ "227": 614,
140
+ "234": 621,
141
+ "683": 555,
142
+ "1-670": 534,
143
+ "47": 242,
144
+ "968": 226,
145
+ "92": 410,
146
+ "680": 552,
147
+ "970": 423,
148
+ "507": 714,
149
+ "675": 537,
150
+ "595": 744,
151
+ "51": 716,
152
+ "63": 515,
153
+ "48": 260,
154
+ "351": 268,
155
+ "1-787, 1-939": 330,
156
+ "974": 427,
157
+ "242": 630,
158
+ "40": 226,
159
+ "7": 250,
160
+ "250": 635,
161
+ "290": 658,
162
+ "1-869": 356,
163
+ "1-758": 358,
164
+ "508": 308,
165
+ "1-784": 360,
166
+ "685": 544,
167
+ "378": 292,
168
+ "239": 626,
169
+ "966": 420,
170
+ "221": 608,
171
+ "381": 220,
172
+ "248": 633,
173
+ "232": 619,
174
+ "65": 525,
175
+ "386": 293,
176
+ "677": 540,
177
+ "27": 655,
178
+ "211": 659,
179
+ "34": 214,
180
+ "94": 413,
181
+ "249": 634,
182
+ "597": 746,
183
+ "268": 653,
184
+ "46": 240,
185
+ "41": 228,
186
+ "963": 417,
187
+ "886": 466,
188
+ "992": 436,
189
+ "255": 640,
190
+ "66": 520,
191
+ "228": 615,
192
+ "690": 554,
193
+ "676": 539,
194
+ "1-868": 374,
195
+ "216": 605,
196
+ "90": 286,
197
+ "993": 438,
198
+ "1-649": 376,
199
+ "688": 553,
200
+ "1-340": 332,
201
+ "256": 641,
202
+ "380": 255,
203
+ "971": 424,
204
+ "44": 234,
205
+ "1": 310,
206
+ "598": 748,
207
+ "998": 434,
208
+ "678": 541,
209
+ "379": 225,
210
+ "58": 734,
211
+ "681": 543,
212
+ "967": 421,
213
+ "260": 645,
214
+ "263": 648,
215
+ "670": 514,
216
+ "245": 632,
217
+ "856": 457,
218
+ "599": 362,
219
+ "850": 467,
220
+ "262": 647,
221
+ "82": 450,
222
+ "84": 452
223
+ }
@@ -49,7 +49,7 @@ export function makeLibSignalRepository(auth, logger, pnToLIDFunc) {
49
49
  }, item.groupId)
50
50
  },
51
51
 
52
- decryptMessage: async ({ jid, type, ciphertext }) => {
52
+ decryptMessage: async ({ jid, type, ciphertext, alternateJid }) => {
53
53
  const addr = jidToAddr(jid)
54
54
  const session = new libsignal.SessionCipher(storage, addr)
55
55
  try {
@@ -64,6 +64,24 @@ export function makeLibSignalRepository(auth, logger, pnToLIDFunc) {
64
64
  if (msg.includes("Bad MAC") || msg.includes("Key used already")) {
65
65
  logger?.warn?.({ jid, error: msg }, "Session corrupted")
66
66
  }
67
+ // Retry with alternate JID if available and error is specifically "No matching sessions found"
68
+ if (alternateJid && msg.includes("No matching sessions found for message")) {
69
+ logger?.debug?.({ jid, alternateJid }, "Retrying decryption with alternate address")
70
+ const altAddr = jidToAddr(alternateJid)
71
+ const altSession = new libsignal.SessionCipher(storage, altAddr)
72
+ try {
73
+ return txn(async () => {
74
+ switch (type) {
75
+ case "pkmsg": return await altSession.decryptPreKeyWhisperMessage(ciphertext)
76
+ case "msg": return await altSession.decryptWhisperMessage(ciphertext)
77
+ }
78
+ }, alternateJid)
79
+ } catch (altErr) {
80
+ const altMsg = altErr?.message || ""
81
+ logger?.warn?.({ alternateJid, error: altMsg }, "Decryption with alternate address also failed")
82
+ throw e
83
+ }
84
+ }
67
85
  throw e
68
86
  }
69
87
  },