diff options
author | default <nobody@localhost> | 2023-02-02 04:16:17 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-02 04:16:17 +0100 |
commit | 829cdb672194bf9354455aa1807172ec83d85a95 (patch) | |
tree | 5e444232411d9c87879d18ff4340ad6ee95c92b5 /http.c | |
parent | adff9c55e2689ef11a611d3eaf288f864a619b3c (diff) |
Move the #main-key adding back to the origin.
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -70,7 +70,7 @@ xs_dict *http_signed_request_raw(const char *keyid, const char *seckey, } /* build now the signature header */ - signature = xs_fmt("keyId=\"%s\"," + signature = xs_fmt("keyId=\"%s#main-key\"," "algorithm=\"rsa-sha256\"," "headers=\"(request-target) host digest date\"," "signature=\"%s\"", @@ -109,11 +109,10 @@ xs_dict *http_signed_request(snac *snac, const char *method, const char *url, int timeout) /* does a signed HTTP request */ { - xs *keyid = xs_fmt("%s#main-key", snac->actor); char *seckey = xs_dict_get(snac->key, "secret"); xs_dict *response; - response = http_signed_request_raw(keyid, seckey, method, url, + response = http_signed_request_raw(snac->actor, seckey, method, url, headers, body, b_size, status, payload, p_size, timeout); return response; |