mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-01-04 22:13:12 +00:00
17 lines
192 B
Protocol Buffer
17 lines
192 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package umbra.encryption;
|
|
|
|
|
|
message Plaintext {
|
|
bytes payload=1;
|
|
}
|
|
|
|
message Ecies {
|
|
bytes encrypted_bytes=1;
|
|
bytes ephemeral_pubkey = 2;
|
|
bytes tag = 3;
|
|
}
|
|
|
|
|