Skip to content

Commit

Permalink
feat: RustCrypto compatible implementation of ZUC-128
Browse files Browse the repository at this point in the history
  • Loading branch information
ouuan committed Dec 10, 2024
1 parent eb1b9fe commit 3f416ba
Show file tree
Hide file tree
Showing 4 changed files with 262 additions and 310 deletions.
52 changes: 52 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
cipher = "0.4.4"
const-str = "0.5.7"
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
)]
#![allow(
clippy::inline_always, //
clippy::module_name_repetitions
)]
// ---
#![cfg_attr(docsrs, feature(doc_cfg))]

mod zuc128;
pub use self::zuc128::ZUC128;

pub use self::zuc128::{Zuc128, Zuc128Core};
pub use cipher;
Loading

0 comments on commit 3f416ba

Please sign in to comment.