Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions meshtastic/channel.proto
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ message ChannelSettings {
* Per-channel module settings.
*/
ModuleSettings module_settings = 7;

/*
* Enable authenticated encryption (AES-CCM) for this channel.
* When true, messages include a 12-byte authentication tag that prevents
* forgery and bit-flipping attacks. All nodes on the channel must have
* this enabled — unauthenticated (AES-CTR) packets are rejected.
* Experimental. Default: false (standard AES-CTR encryption).
*/
bool use_aead = 8;
}

/*
Expand Down