1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-31 01:24:31 +00:00

signing methodArgs

This commit is contained in:
postmannen 2022-02-03 07:04:10 +01:00
parent 121cad531c
commit 6724753e62

View file

@ -4,11 +4,13 @@ import (
"bytes"
"compress/gzip"
"context"
"crypto/ed25519"
"encoding/gob"
"fmt"
"io"
"log"
"os"
"strings"
"sync"
"time"
@ -594,6 +596,11 @@ func (p process) publishMessages(natsConn *nats.Conn) {
// exit this function if Cancel are received via ctx.
select {
case m := <-p.subject.messageCh:
// Sign the methodArgs, and add the signature to the message.
m.ArgSignature = p.addMethodArgSignature(m)
fmt.Printf(" * added signature: %v\n", m.ArgSignature)
fmt.Printf(" * length of sig : %v\n", len(m.ArgSignature))
p.publishAMessage(m, zEnc, once, natsConn)
case <-p.ctx.Done():
er := fmt.Errorf("info: canceling publisher: %v", p.subject.name())
@ -604,6 +611,13 @@ func (p process) publishMessages(natsConn *nats.Conn) {
}
}
func (p process) addMethodArgSignature(m Message) []byte {
argsString := strings.Join(m.MethodArgs, " ")
sign := ed25519.Sign(p.processes.SignPrivateKey, []byte(argsString))
return sign
}
func (p process) publishAMessage(m Message, zEnc *zstd.Encoder, once sync.Once, natsConn *nats.Conn) {
// Create the initial header, and set values below depending on the
// various configuration options chosen.