summaryrefslogtreecommitdiff
path: root/src/jws/libwebidoidc-jws.c
AgeCommit message (Collapse)Author
2021-05-18Prevent memory error bugVivien Kraus
I discovered this with the recent guile update. If dynwind_mpz_t_clear is passed a copy of the mpz_t value, then the value living on the stack of dynwind_mpz_t_clear will be registered for garbage collection. However, that value becomes unreadable as soon as dynwind_mpz_t_clear returns, because its location on the stack is overriden.
2021-05-11Add a signature and verification function for JWSVivien Kraus