if the digest is in the httpsig, we should also verify it matches content

master
Ted Unangst 5 years ago
parent f55e212238
commit f14b8d8e6e

@ -139,6 +139,12 @@ func zag(req *http.Request, content []byte) (string, error) {
if s != serverName {
log.Printf("caution: servername host header mismatch")
}
case "digest":
s = req.Header.Get(h)
expv := "SHA-256=" + sb64sha256(content)
if s != expv {
return "", fmt.Errorf("digest header '%s' did not match content", s)
}
default:
s = req.Header.Get(h)
}

Loading…
Cancel
Save