Add device linking infrastructure.

This commit is contained in:
Cody Henthorne
2025-08-01 14:16:31 -04:00
parent e6e869e074
commit e29abdea91
23 changed files with 440 additions and 119 deletions

View File

@@ -564,6 +564,15 @@ message LocalRegistrationMetadata {
bytes profileKey = 15;
string servicePassword = 16;
bool reglockEnabled = 17;
LinkedDeviceInfo linkedDeviceInfo = 18;
}
message LinkedDeviceInfo {
uint32 deviceId = 1;
string deviceName = 2;
optional bytes ephemeralBackupKey = 3;
optional string accountEntropyPool = 4;
optional bytes mediaRootBackupKey = 5;
}
message RestoreDecisionState {