chat_proto/proto/wap/encryption.proto

16 lines
212 B
Protocol Buffer
Raw Normal View History

2025-06-25 15:12:50 -07:00
syntax = "proto3";
2025-07-11 13:49:33 -07:00
package wap.encryption;
2025-06-25 15:12:50 -07:00
2025-07-03 14:04:13 -07:00
message EncryptedPayload {
oneof encryption {
2025-07-10 18:14:16 -07:00
NoiseKN noise_KN = 3;
2025-07-03 14:04:13 -07:00
}
}
2025-07-10 18:14:16 -07:00
message NoiseKN {
bytes encrypted_bytes = 1;
2025-06-25 15:12:50 -07:00
bytes ephemeral_pubkey = 2;
}