Merge pull request #6950 from SparkiDev/srtp_kdf_fix
SRTP KDF: Don't use i outside loop
This commit is contained in:
commit
3332b036d5
@ -910,7 +910,7 @@ static void wc_srtp_kdf_first_block(const byte* salt, word32 saltSz, int kdrIdx,
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* XOR in as bit shifted index. */
|
/* XOR in as bit shifted index. */
|
||||||
block[WC_SRTP_MAX_SALT - indexSz] ^= index[i+0] >> bits;
|
block[WC_SRTP_MAX_SALT - indexSz] ^= index[0] >> bits;
|
||||||
for (i = 1; i < indexSz; i++) {
|
for (i = 1; i < indexSz; i++) {
|
||||||
block[i + WC_SRTP_MAX_SALT - indexSz] ^=
|
block[i + WC_SRTP_MAX_SALT - indexSz] ^=
|
||||||
(index[i-1] << (8 - bits)) |
|
(index[i-1] << (8 - bits)) |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user