mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Move the #main-key adding back to the origin.
This commit is contained in:
parent
adff9c55e2
commit
829cdb6721
1 changed files with 2 additions and 3 deletions
5
http.c
5
http.c
|
@ -70,7 +70,7 @@ xs_dict *http_signed_request_raw(const char *keyid, const char *seckey,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* build now the signature header */
|
/* build now the signature header */
|
||||||
signature = xs_fmt("keyId=\"%s\","
|
signature = xs_fmt("keyId=\"%s#main-key\","
|
||||||
"algorithm=\"rsa-sha256\","
|
"algorithm=\"rsa-sha256\","
|
||||||
"headers=\"(request-target) host digest date\","
|
"headers=\"(request-target) host digest date\","
|
||||||
"signature=\"%s\"",
|
"signature=\"%s\"",
|
||||||
|
@ -109,11 +109,10 @@ xs_dict *http_signed_request(snac *snac, const char *method, const char *url,
|
||||||
int timeout)
|
int timeout)
|
||||||
/* does a signed HTTP request */
|
/* does a signed HTTP request */
|
||||||
{
|
{
|
||||||
xs *keyid = xs_fmt("%s#main-key", snac->actor);
|
|
||||||
char *seckey = xs_dict_get(snac->key, "secret");
|
char *seckey = xs_dict_get(snac->key, "secret");
|
||||||
xs_dict *response;
|
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);
|
headers, body, b_size, status, payload, p_size, timeout);
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
|
|
Loading…
Reference in a new issue