From 279de6a1195adb739a8d1f2afb445b68793b28b8 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Sun, 2 Jun 2024 08:29:49 +0200 Subject: chore: Remove dash in project name To be consistent with naming of the tools in cmd/. --- pkg/policy/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/policy/node.go') diff --git a/pkg/policy/node.go b/pkg/policy/node.go index 23f04ca..607dbc3 100644 --- a/pkg/policy/node.go +++ b/pkg/policy/node.go @@ -84,7 +84,7 @@ func (n *Node) HMAC(data []byte) (mac [sha256.Size]byte, err error) { } func (n *Node) deriveKey() error { - const salt = "silent-ct" + const salt = "silentct" hkdf := hkdf.New(sha256.New, []byte(n.Secret), []byte(salt), []byte(n.Name)) _, err := io.ReadFull(hkdf, n.key[:]) -- cgit v1.2.3