feat: implement qmc1 & qmc2

This commit is contained in:
鲁树人
2024-09-04 01:12:20 +01:00
parent f78def74a6
commit 6f9ed3d9cb
13 changed files with 274 additions and 4 deletions

7
um_crypto/qmc/src/lib.rs Normal file
View File

@@ -0,0 +1,7 @@
use thiserror::Error;
pub mod v1;
pub mod v2_rc4;
#[derive(Error, Debug)]
pub enum QmcCryptoError {}