From 45a05dbdc9d0bc7c3a53a339dcf91080e4f0ec3d Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Thu, 5 Jan 2023 11:20:17 -0500 Subject: try no date --- registry/registry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'registry/registry.go') diff --git a/registry/registry.go b/registry/registry.go index 93b66dc..eb53171 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -276,8 +276,8 @@ func (r *Registry) deliverAcceptToInbox(url, actorUrl *url.URL, follow vocab.Act prefs := []httpsig.Algorithm{httpsig.RSA_SHA256} digestAlgorithm := httpsig.DigestSha256 // The "Date" and "Digest" headers must already be set on r, as well as r.URL. - headersToSign := []string{httpsig.RequestTarget, "host", "date", "digest", "content-type"} - signer, _, err := httpsig.NewSigner(prefs, digestAlgorithm, headersToSign, httpsig.Signature, 300) // expires in 5 mins + headersToSign := []string{httpsig.RequestTarget, "host", "digest", "content-type"} + signer, _, err := httpsig.NewSigner(prefs, digestAlgorithm, headersToSign, httpsig.Signature, 0) // expires in 5 mins if err != nil { return err } -- cgit v1.2.3