mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
refactor: use Buffer instead of Binary
This commit is contained in:
@@ -18,7 +18,7 @@ export const makeNoiseHandler = ({ public: publicKey, private: privateKey }: Key
|
|||||||
|
|
||||||
const authenticate = (data: Uint8Array) => {
|
const authenticate = (data: Uint8Array) => {
|
||||||
if(!isFinished) {
|
if(!isFinished) {
|
||||||
hash = sha256(Buffer.from(Binary.build(hash, data).readByteArray()))
|
hash = sha256(Buffer.concat([hash, data]))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ export const makeNoiseHandler = ({ public: publicKey, private: privateKey }: Key
|
|||||||
isFinished = true
|
isFinished = true
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = Binary.build(NOISE_MODE).readBuffer()
|
const data = Buffer.from(NOISE_MODE)
|
||||||
let hash = Buffer.from(data.byteLength === 32 ? data : sha256(Buffer.from(data)))
|
let hash = Buffer.from(data.byteLength === 32 ? data : sha256(Buffer.from(data)))
|
||||||
let salt = hash
|
let salt = hash
|
||||||
let encKey = hash
|
let encKey = hash
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Boom } from '@hapi/boom'
|
|||||||
import { createHash } from 'crypto'
|
import { createHash } from 'crypto'
|
||||||
import { proto } from '../../WAProto'
|
import { proto } from '../../WAProto'
|
||||||
import type { AuthenticationCreds, SignalCreds, SocketConfig } from '../Types'
|
import type { AuthenticationCreds, SignalCreds, SocketConfig } from '../Types'
|
||||||
import { Binary, BinaryNode, getAllBinaryNodeChildren, jidDecode, S_WHATSAPP_NET } from '../WABinary'
|
import { BinaryNode, getAllBinaryNodeChildren, jidDecode, S_WHATSAPP_NET } from '../WABinary'
|
||||||
import { Curve, hmacSign } from './crypto'
|
import { Curve, hmacSign } from './crypto'
|
||||||
import { encodeInt } from './generics'
|
import { encodeInt } from './generics'
|
||||||
import { createSignalIdentity } from './signal'
|
import { createSignalIdentity } from './signal'
|
||||||
@@ -116,12 +116,21 @@ export const configureSuccessfulPairing = (
|
|||||||
const account = proto.ADVSignedDeviceIdentity.decode(details)
|
const account = proto.ADVSignedDeviceIdentity.decode(details)
|
||||||
const { accountSignatureKey, accountSignature } = account
|
const { accountSignatureKey, accountSignature } = account
|
||||||
|
|
||||||
const accountMsg = Binary.build(new Uint8Array([6, 0]), account.details, signedIdentityKey.public).readByteArray()
|
const accountMsg = Buffer.concat([
|
||||||
|
Buffer.from([6, 0]),
|
||||||
|
account.details,
|
||||||
|
signedIdentityKey.public
|
||||||
|
])
|
||||||
if(!Curve.verify(accountSignatureKey, accountMsg, accountSignature)) {
|
if(!Curve.verify(accountSignatureKey, accountMsg, accountSignature)) {
|
||||||
throw new Boom('Failed to verify account signature')
|
throw new Boom('Failed to verify account signature')
|
||||||
}
|
}
|
||||||
|
|
||||||
const deviceMsg = Binary.build(new Uint8Array([6, 1]), account.details, signedIdentityKey.public, account.accountSignatureKey).readByteArray()
|
const deviceMsg = Buffer.concat([
|
||||||
|
new Uint8Array([6, 1]),
|
||||||
|
account.details,
|
||||||
|
signedIdentityKey.public,
|
||||||
|
account.accountSignatureKey
|
||||||
|
])
|
||||||
account.deviceSignature = Curve.sign(signedIdentityKey.private, deviceMsg)
|
account.deviceSignature = Curve.sign(signedIdentityKey.private, deviceMsg)
|
||||||
|
|
||||||
const identity = createSignalIdentity(jid, accountSignatureKey)
|
const identity = createSignalIdentity(jid, accountSignatureKey)
|
||||||
|
|||||||
Reference in New Issue
Block a user