mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-04 16:32:57 +08:00
10 lines
197 B
Protocol Buffer
10 lines
197 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wice;
|
|
option go_package = "riasc.eu/wice/pkg/pb";
|
|
|
|
// A container for an encrypted protobuf message
|
|
message EncryptedMessage {
|
|
bytes body = 1;
|
|
bytes nonce = 2;
|
|
} |