feat: qmc v2 map cipher

This commit is contained in:
鲁树人
2024-09-04 19:13:03 +01:00
parent aa4c650ff0
commit 1a282c0912
3 changed files with 102 additions and 1 deletions

View File

@@ -1,7 +1,11 @@
use thiserror::Error;
pub mod v1;
pub mod v2_map;
pub mod v2_rc4;
#[derive(Error, Debug)]
pub enum QmcCryptoError {}
pub enum QmcCryptoError {
#[error("QMC V2/Map Cipher: Key is empty")]
QMCV2MapKeyEmpty,
}