Retire the (long-unused!) `KEY_EXCHANGE` envelope type

This commit is contained in:
Jon Chambers 2025-03-26 11:23:38 -04:00 committed by Jon Chambers
parent 46aefc0cbe
commit 12576daf1f
1 changed files with 2 additions and 2 deletions

View File

@ -11,13 +11,13 @@ option java_outer_classname = "MessageProtos";
message Envelope {
enum Type {
reserved 2, 7;
UNKNOWN = 0;
CIPHERTEXT = 1;
KEY_EXCHANGE = 2;
PREKEY_BUNDLE = 3;
SERVER_DELIVERY_RECEIPT = 5;
UNIDENTIFIED_SENDER = 6;
reserved 7;
PLAINTEXT_CONTENT = 8; // for decryption error receipts
}