[dependencies.cipher]
version = "0.2"
[dev-dependencies.cipher]
features = ["dev"]
version = "0.2"
[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "AES-CTR stream ciphers"
documentation = "https://docs.rs/aes-ctr"
edition = "2018"
keywords = ["crypto", "stream-cipher", "trait"]
license = "MIT OR Apache-2.0"
name = "aes-ctr"
readme = "README.md"
repository = "https://github.com/RustCrypto/stream-ciphers"
version = "0.6.0"
[target."cfg(all(target_feature = \"aes\", target_feature = \"sse2\", target_feature = \"ssse3\", any(target_arch = \"x86_64\", target_arch = \"x86\")))".dependencies.aesni]
version = "0.10"
[target."cfg(not(all(target_feature = \"aes\", target_feature = \"sse2\", target_feature = \"ssse3\", any(target_arch = \"x86_64\", target_arch = \"x86\"))))".dependencies.aes-soft]
version = "0.6"
[target."cfg(not(all(target_feature = \"aes\", target_feature = \"sse2\", target_feature = \"ssse3\", any(target_arch = \"x86_64\", target_arch = \"x86\"))))".dependencies.ctr]
version = "0.6"