Remove XK0

This commit is contained in:
Jazz Turner-Baggs 2026-01-20 14:29:12 -08:00
parent 615f856588
commit c580a84cce
No known key found for this signature in database

View File

@ -26,10 +26,14 @@ message Doubleratchet {
string aux = 5; string aux = 5;
} }
message XK0 { message InboxHandshakeV1 {
bytes initiator_static = 1;
bytes initiator_ephemeral = 2; message InboxHeaderV1 {
bytes responder_static = 3; bytes initiator_static = 1;
bytes responder_ephemeral = 4; // Replace with RKI to save bytes bytes initiator_ephemeral = 2;
bytes payload = 5; bytes responder_static = 3;
} bytes responder_ephemeral = 4; // Replace with RKI to save bytes
}
InboxHeaderV1 header = 1;
bytes payload = 2;
}