added unwrap lol
This commit is contained in:
parent
9be0b7d316
commit
fd54890190
File diff suppressed because one or more lines are too long
|
@ -31,7 +31,7 @@ impl Cipher {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn decrypt_chunk(&self, chunk: &mut [u8]) {
|
pub fn decrypt_chunk(&self, chunk: &mut [u8]) {
|
||||||
self.cipher.clone().decrypt(chunk);
|
self.cipher.clone().decrypt(chunk).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue