[package] name = "feistel" version = "0.1.0" edition = "2021" rust-version = "1.79" publish = true description = "Generic Feistel Cipher" documentation = "https://docs.rs/feistel" keywords = ["crypto", "no-std"] categories = ["no-std", "cryptography", "algorithms"] readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/parrrate/feistel" authors = [ "Alisa Feistel ", "T.A. Prikhodko ", ] [features] default = ["array"] array = ["dep:generic-array"] [dependencies] generic-array = { version = "1.1.0", optional = true } [dev-dependencies] sha2 = "0.10.8"