# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.56" name = "eax" version = "0.5.0" authors = ["RustCrypto Developers"] description = """ Pure Rust implementation of the EAX Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration This scheme is only based on a block cipher. It uses counter mode (CTR) for encryption and CBC mode for generating a OMAC/CMAC/CBCMAC (all names for the same thing). """ documentation = "https://docs.rs/eax" readme = "README.md" keywords = [ "aead", "aes", "encryption", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/AEADs" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.aead] version = "0.5" default-features = false [dependencies.cipher] version = "0.4" [dependencies.cmac] version = "0.7" [dependencies.ctr] version = "0.9" [dependencies.subtle] version = "2" default-features = false [dev-dependencies.aead] version = "0.5" features = ["dev"] default-features = false [dev-dependencies.aes] version = "0.8" [features] alloc = ["aead/alloc"] default = [ "alloc", "getrandom", ] getrandom = ["aead/getrandom"] heapless = ["aead/heapless"] std = [ "aead/std", "alloc", ] stream = ["aead/stream"]