mirror of
https://github.com/kristoferssolo/cipher-workshop.git
synced 2025-12-31 13:52:29 +00:00
Move duplicated macro definitions from aes and des crates into
cipher-core for shared use. Both macros now:
- Support u8 through u128 integer types
- Include Zeroize derive for secure memory handling
- Generate consistent formatting and conversion methods
13 lines
200 B
TOML
13 lines
200 B
TOML
[package]
|
|
name = "cipher-core"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
thiserror.workspace = true
|
|
zeroize.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|