From 73ee6cf1103d301d8604379fc20a36199368eabd Mon Sep 17 00:00:00 2001 From: Thibault Normand Date: Mon, 8 Apr 2024 20:36:45 +0200 Subject: [PATCH] chore(ci): code format --- v3/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/helpers.go b/v3/helpers.go index 2d992a1..a12fa12 100644 --- a/v3/helpers.go +++ b/v3/helpers.go @@ -61,7 +61,7 @@ func kdf(key *LocalKey, n []byte) (ek, n2, ak []byte, err error) { return ek, n2, ak, nil } -func mac(ak, h, n, c, f, i []byte) ([]byte) { +func mac(ak, h, n, c, f, i []byte) []byte { // Compute pre-authentication message preAuth := common.PreAuthenticationEncoding([]byte(h), n, c, f, i)