chat_proto/proto/umbra/encryption.proto
2025-07-10 18:14:16 -07:00

16 lines
214 B
Protocol Buffer

syntax = "proto3";
package umbra.encryption;
message EncryptedPayload {
oneof encryption {
NoiseKN noise_KN = 3;
}
}
message NoiseKN {
bytes encrypted_bytes = 1;
bytes ephemeral_pubkey = 2;
}