Skip to content

Commit

Permalink
stir_shaken: complete fix in commit 3bf2b98
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlad-patrascu committed Jul 30, 2020
1 parent f9fd982 commit a9e78b4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/stir_shaken/stir_shaken.c
Expand Up @@ -686,6 +686,12 @@ int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen)

return tolen;
}

void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps)
{
*pr = sig->r;
*ps = sig->s;
}
#endif

static int add_identity_hf(struct sip_msg *msg, EVP_PKEY *pkey,
Expand Down

0 comments on commit a9e78b4

Please sign in to comment.