mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
Use xs_evp_sign() for signing.
This commit is contained in:
parent
e3cea55770
commit
acb4bcd80f
1 changed files with 4 additions and 4 deletions
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",
|
||||
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 */
|
||||
|
|
Loading…
Reference in a new issue