Skip to content

Commit

Permalink
fix: Send non-empty payload during handshake
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilIvanichkovv committed Apr 29, 2024
1 parent 056e650 commit 698b8c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pairing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export class WakuPairing {
// At this point wakuMsg is sent over the Waku network to responder content topic
let encoder = new NoiseHandshakeEncoder(this.contentTopic, this.pubsubTopic, hsStep);
await this.sender.send(encoder, {
payload: new Uint8Array(),
payload: Uint8Array.from(Array.from("1st step of initiator handshake").map((letter) => letter.charCodeAt(0))),
});

// We generate an authorization code using the handshake state
Expand Down Expand Up @@ -285,7 +285,7 @@ export class WakuPairing {

encoder = new NoiseHandshakeEncoder(this.contentTopic, this.pubsubTopic, hsStep);
await this.sender.send(encoder, {
payload: new Uint8Array(),
payload: Uint8Array.from(Array.from("3rd step of initiator handshake").map((letter) => letter.charCodeAt(0))),
});

// Secure Transfer Phase
Expand Down Expand Up @@ -331,7 +331,7 @@ export class WakuPairing {
// We prepare a Waku message from responder's payload2
const encoder = new NoiseHandshakeEncoder(this.contentTopic, this.pubsubTopic, hsStep);
await this.sender.send(encoder, {
payload: new Uint8Array(),
payload: Uint8Array.from(Array.from("2nd step of responder handshake").map((letter) => letter.charCodeAt(0))),
});

// 3rd step
Expand Down

0 comments on commit 698b8c9

Please sign in to comment.