fix bug when setting node id

This commit is contained in:
John Smith 2023-05-29 12:26:36 -04:00
parent 67eefbd038
commit 532ef0b9ac
2 changed files with 6 additions and 1 deletions

2
Cargo.lock generated
View File

@ -1248,6 +1248,7 @@ dependencies = [
"ciborium",
"clap 3.2.25",
"criterion-plot",
"futures",
"itertools",
"lazy_static",
"num-traits",
@ -2869,6 +2870,7 @@ dependencies = [
name = "keyvaluedb-web"
version = "0.1.0"
dependencies = [
"async-lock",
"console_log",
"flume",
"futures",

View File

@ -125,7 +125,10 @@ impl TableDB {
/// Decrypt buffer using decrypt key with nonce prepended to input
fn maybe_decrypt(&self, data: &[u8]) -> Vec<u8> {
if let Some(di) = &self.unlocked_inner.decrypt_info {
assert!(data.len() > NONCE_LENGTH);
assert!(data.len() >= NONCE_LENGTH);
if data.len() == NONCE_LENGTH {
return Vec::new();
}
let mut out = unsafe { unaligned_u8_vec_uninit(data.len() - NONCE_LENGTH) };