Removed unneccessary reference
This commit is contained in:
parent
c96a0714b6
commit
8c3fa0dd10
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@ impl RatchetEncHeader {
|
||||||
}
|
}
|
||||||
if let Some(d) = &mut self.ckr {
|
if let Some(d) = &mut self.ckr {
|
||||||
while self.nr < until {
|
while self.nr < until {
|
||||||
let (ckr, mk) = kdf_ck(&d);
|
let (ckr, mk) = kdf_ck(d);
|
||||||
*d = ckr;
|
*d = ckr;
|
||||||
self.mkskipped.insert((self.hkr, self.nr), mk);
|
self.mkskipped.insert((self.hkr, self.nr), mk);
|
||||||
self.nr += 1
|
self.nr += 1
|
||||||
|
|
Loading…
Reference in a new issue