chat_proto/proto/wap/encryption.proto
2025-07-11 14:29:11 -07:00

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;
}