twonly-app/lib/src/model/protobuf/client/qr.proto
otsmr 304190387d
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
improve qr code verifications
2026-05-19 15:27:44 +02:00

21 lines
495 B
Protocol Buffer

syntax = "proto3";
message QREnvelope {
enum Type {
PUBLIC_PROFILE = 0;
}
Type type = 2;
bytes data = 3;
}
message PublicProfile {
int64 user_id = 1;
string username = 2;
bytes public_identity_key = 3;
bytes signed_prekey = 4;
int64 registration_id = 5;
bytes signed_prekey_signature = 6;
int64 signed_prekey_id = 7;
optional bytes secret_verification_token = 8;
optional int64 timestamp = 9;
}