Broadcast-securejoin is working!!

This commit is contained in:
Hocuri
2025-08-01 16:32:11 +02:00
parent 24561cd256
commit 326deab025
11 changed files with 208 additions and 96 deletions

View File

@@ -45,6 +45,8 @@ pub enum QrObject {
/// Fingerprint of the contact key as scanned from the QR code.
fingerprint: String,
authcode: String,
/// The secret shared between all members,
/// used to symmetrically encrypt&decrypt messages.
shared_secret: String,
@@ -227,6 +229,7 @@ impl From<Qr> for QrObject {
grpid,
contact_id,
fingerprint,
authcode,
shared_secret,
} => {
let contact_id = contact_id.to_u32();
@@ -236,6 +239,7 @@ impl From<Qr> for QrObject {
grpid,
contact_id,
fingerprint,
authcode,
shared_secret,
}
}