Commit 4c0b30b0 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '127d813b'

* commit '127d813b':
  rtmpdh: Fix a local variable name in the nettle/gcrypt codepath
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 392832fc 127d813b
...@@ -134,7 +134,7 @@ static FFBigNum dh_generate_key(FF_DH *dh) ...@@ -134,7 +134,7 @@ static FFBigNum dh_generate_key(FF_DH *dh)
} }
static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn, static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
uint32_t pub_key_len, uint8_t *secret_key) uint32_t secret_key_len, uint8_t *secret_key)
{ {
FFBigNum k; FFBigNum k;
int num_bytes; int num_bytes;
...@@ -148,11 +148,11 @@ static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn, ...@@ -148,11 +148,11 @@ static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
return -1; return -1;
bn_modexp(k, pub_key_bn, dh->priv_key, dh->p); bn_modexp(k, pub_key_bn, dh->priv_key, dh->p);
bn_bn2bin(k, secret_key, pub_key_len); bn_bn2bin(k, secret_key, secret_key_len);
bn_free(k); bn_free(k);
/* return the length of the shared secret key like DH_compute_key */ /* return the length of the shared secret key like DH_compute_key */
return pub_key_len; return secret_key_len;
} }
void ff_dh_free(FF_DH *dh) void ff_dh_free(FF_DH *dh)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment