mirror of
https://github.com/logos-messaging/chat_proto.git
synced 2026-01-02 13:03:10 +00:00
16 lines
212 B
Protocol Buffer
16 lines
212 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wap.encryption;
|
|
|
|
|
|
message EncryptedPayload {
|
|
oneof encryption {
|
|
NoiseKN noise_KN = 3;
|
|
}
|
|
}
|
|
|
|
message NoiseKN {
|
|
bytes encrypted_bytes = 1;
|
|
bytes ephemeral_pubkey = 2;
|
|
}
|