From 7b230f1fc6b9034aba55a1dfc5e4051befd5c5fb Mon Sep 17 00:00:00 2001 From: postmannen Date: Mon, 31 Jan 2022 10:06:14 +0100 Subject: [PATCH] Added ArgSignature to Message --- message_and_subject.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/message_and_subject.go b/message_and_subject.go index 087fd35..9290cd1 100644 --- a/message_and_subject.go +++ b/message_and_subject.go @@ -28,6 +28,8 @@ type Message struct { // method. Can be f.ex. an ip address if it is a tcp sender, or the // shell command to execute in a cli session. MethodArgs []string `json:"methodArgs" yaml:"methodArgs"` + // ArgSignature is the ed25519 signature of the methodArgs. + ArgSignature []byte `json:"argSignature" yaml:"argSignature"` // ReplyMethod, is the method to use for the reply message. // By default the reply method will be set to log to file, but // you can override it setting your own here.