diff --git a/chacha20/Cargo.toml b/chacha20/Cargo.toml index ed3872a4..f03c4ceb 100644 --- a/chacha20/Cargo.toml +++ b/chacha20/Cargo.toml @@ -1,22 +1,22 @@ [package] name = "chacha20" version = "0.10.0-pre.3" -description = """ -The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits -from the RustCrypto `cipher` crate, with optional architecture-specific -hardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12, -XChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional -rand_core-compatible RNGs based on those ciphers. -""" authors = ["RustCrypto Developers"] -license = "Apache-2.0 OR MIT" edition = "2024" rust-version = "1.85" -readme = "README.md" documentation = "https://docs.rs/chacha20" +readme = "README.md" repository = "https://github.com/RustCrypto/stream-ciphers" +license = "MIT OR Apache-2.0" keywords = ["crypto", "stream-cipher", "chacha8", "chacha12", "xchacha20"] categories = ["cryptography", "no-std"] +description = """ +The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits +from the RustCrypto `cipher` crate, with optional architecture-specific +hardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12, +XChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional +rand_core-compatible RNGs based on those ciphers. +""" [dependencies] cfg-if = "1" diff --git a/hc-256/Cargo.toml b/hc-256/Cargo.toml index e0bf3844..618f6d1f 100644 --- a/hc-256/Cargo.toml +++ b/hc-256/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "hc-256" version = "0.6.0-pre" -description = "HC-256 Stream Cipher" authors = ["RustCrypto Developers"] -license = "MIT OR Apache-2.0" edition = "2024" rust-version = "1.85" -readme = "README.md" documentation = "https://docs.rs/hc-256" +readme = "README.md" repository = "https://github.com/RustCrypto/stream-ciphers" +license = "MIT OR Apache-2.0" keywords = ["crypto", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] +description = "Pure Rust implementation of the HC-256 stream cipher" [dependencies] cipher = "=0.5.0-pre.8" diff --git a/rabbit/Cargo.toml b/rabbit/Cargo.toml index 978cf171..0450f5af 100644 --- a/rabbit/Cargo.toml +++ b/rabbit/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "rabbit" version = "0.5.0-pre" -description = "An implementation of the Rabbit Stream Cipher Algorithm" authors = ["RustCrypto Developers"] -license = "MIT OR Apache-2.0" edition = "2024" rust-version = "1.85" -readme = "README.md" documentation = "https://docs.rs/rabbit" +readme = "README.md" repository = "https://github.com/RustCrypto/stream-ciphers" +license = "MIT OR Apache-2.0" keywords = ["crypto", "rabbit", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] +description = "Pure Rust implementation of the Rabbit stream cipher" [dependencies] cipher = "=0.5.0-pre.8" diff --git a/rc4/Cargo.toml b/rc4/Cargo.toml index 6689fcf3..5260c533 100644 --- a/rc4/Cargo.toml +++ b/rc4/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "rc4" version = "0.2.0-pre" -description = "Pure Rust implementation of the RC4 stream cipher" -authors = ["The Rust-Crypto Project Developers"] -license = "MIT OR Apache-2.0" +authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" -readme = "README.md" documentation = "https://docs.rs/rc4" +readme = "README.md" repository = "https://github.com/RustCrypto/stream-ciphers" +license = "MIT OR Apache-2.0" keywords = ["arc4", "arcfour", "crypto", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] +description = "Pure Rust implementation of the RC4 stream cipher" [dependencies] cipher = "=0.5.0-pre.8" diff --git a/salsa20/Cargo.toml b/salsa20/Cargo.toml index 36bd83e3..f3517561 100644 --- a/salsa20/Cargo.toml +++ b/salsa20/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "salsa20" version = "0.11.0-pre.2" -description = "Salsa20 Stream Cipher" authors = ["RustCrypto Developers"] -license = "MIT OR Apache-2.0" edition = "2024" rust-version = "1.85" -readme = "README.md" documentation = "https://docs.rs/salsa20" +readme = "README.md" repository = "https://github.com/RustCrypto/stream-ciphers" +license = "MIT OR Apache-2.0" keywords = ["crypto", "stream-cipher", "trait", "xsalsa20"] categories = ["cryptography", "no-std"] +description = "Pure Rust implementation of the Salsa20 stream cipher" [dependencies] cfg-if = "1"