mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-10 03:50:38 +03:00
Use xs_evp_sign() for signing.
This commit is contained in:
parent
e3cea55770
commit
acb4bcd80f
2
http.c
2
http.c
@ -65,7 +65,7 @@ d_char *http_signed_request(snac *snac, char *method, char *url,
|
|||||||
strcmp(method, "POST") == 0 ? "post" : "get",
|
strcmp(method, "POST") == 0 ? "post" : "get",
|
||||||
target, host, digest, date);
|
target, host, digest, date);
|
||||||
|
|
||||||
s64 = xs_rsa_sign(seckey, s, strlen(s));
|
s64 = xs_evp_sign(seckey, s, strlen(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* build now the signature header */
|
/* build now the signature header */
|
||||||
|
Loading…
Reference in New Issue
Block a user