remove duplicates

This commit is contained in:
Jazz Turner-Baggs 2025-06-30 16:48:02 -07:00
parent a986259416
commit 237f9a1d5e
No known key found for this signature in database
2 changed files with 0 additions and 12 deletions

View File

@ -4,10 +4,6 @@ package umbra.convos.private_v1;
import "proto/umbra/common_frames.proto";
message ConversationInvite_PrivateV1 {
// TODO: update placeholder fields
string participants = 1;
}
message Placeholder {

View File

@ -13,12 +13,4 @@ message Ecies {
bytes tag = 3;
}
// TODO: This also encompasses plaintexts, is there a better name?
// Alternatives: ???
message EncryptedBytes {
oneof encryption {
Plaintext plaintext = 1;
Ecies ecies = 2;
}
}