Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions aes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "aes"
version = "0.9.3"
description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.89"
readme = "README.md"
documentation = "https://docs.rs/aes"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "aes", "rijndael", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["aes", "rijndael", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the Advanced Encryption Standard (a.k.a. Rijndael)"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions aria/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "aria"
version = "0.2.0"
description = "Pure Rust implementation of the ARIA Encryption Algorithm"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/aria"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "aria", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["aria", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the ARIA Encryption Algorithm"

[dependencies]
cipher = "0.5"
Expand Down
1 change: 0 additions & 1 deletion belt-block/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
rust-version = "1.85"
edition = "2024"
readme = "README.md"
documentation = "https://docs.rs/belt-block"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "belt-block", "belt", "stb"]
Expand Down
7 changes: 3 additions & 4 deletions blowfish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "blowfish"
version = "0.10.0"
description = "Blowfish block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/blowfish"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "blowfish", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["blowfish", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Blowfish block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions camellia/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "camellia"
version = "0.2.1"
description = "Camellia block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/camellia"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "camellia", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["camellia", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Camellia block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions cast5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "cast5"
version = "0.12.0"
description = "CAST5 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/cast5"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "cast5", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["cast5", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "CAST5 block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions cast6/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "cast6"
version = "0.2.0"
description = "CAST6 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/cast6"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "cast6", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["cast6", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "CAST6 block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions des/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "des"
version = "0.9.0"
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/des"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "des", "tdes", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["des", "tdes", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"

[dependencies]
cipher = "0.5"
Expand Down
9 changes: 4 additions & 5 deletions gift-cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "gift-cipher"
version = "0.1.0"
description = "Pure Rust implementation of the Gift block cipher"
authors = ["RustCrypto Developers", "Schmid7k"]
license = "MIT OR Apache-2.0"
authors = ["RustCrypto Developers"]
rust-version = "1.85"
edition = "2024"
readme = "README.md"
documentation = "https://docs.rs/gift-cipher"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "gift", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["gift", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the Gift block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions idea/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "idea"
version = "0.6.0"
description = "IDEA block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/idea"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "idea", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["idea", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "IDEA block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions kuznyechik/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "kuznyechik"
version = "0.9.0"
description = "Kuznyechik (GOST R 34.12-2015) block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/kuznyechik"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "kuznyechik", "gost", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["kuznyechik", "gost", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Kuznyechik (GOST R 34.12-2015) block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions magma/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "magma"
version = "0.10.0"
description = "Magma (GOST R 34.12-2015) block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/magma"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "magma", "gost", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["magma", "gost", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Magma (GOST R 34.12-2015) block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions rc2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "rc2"
version = "0.9.0"
description = "RC2 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/rc2"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "rc2", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["rc2", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "RC2 block cipher"

[dependencies]
cipher = "0.5"
Expand Down
8 changes: 4 additions & 4 deletions rc5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "rc5"
version = "0.1.0"
description = "RC5 block cipher"
authors = ["RustCrypto Developers"]
edition = "2024"
license = "MIT OR Apache-2.0"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/rc5"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "rc5", "block-cipher"]
categories = ["cryptography"]
keywords = ["rc5", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "RC5 block cipher"

[dependencies]
cipher = "0.5"
Expand Down
10 changes: 5 additions & 5 deletions rc6/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "rc6"
version = "0.1.0"
description = "RC6 block cipher"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/rc6"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "rc6", "block-cipher"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
keywords = ["rc6", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "RC6 block cipher"

[dependencies]
cipher = { version = "0.5", features = ["zeroize"] }
Expand Down
7 changes: 3 additions & 4 deletions serpent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "serpent"
version = "0.6.0"
description = "Serpent block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/serpent"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "serpent", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["serpent", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Serpent block cipher"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions sm4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "sm4"
version = "0.6.0"
description = "SM4 block cipher algorithm"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/sm4"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "sm4", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["sm4", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "SM4 block cipher algorithm"

[dependencies]
cipher = "0.5"
Expand Down
11 changes: 5 additions & 6 deletions speck-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
name = "speck-cipher"
version = "0.1.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = "Speck block cipher algorithm"
documentation = "https://docs.rs/speck-cipher"
repository = "https://github.com/RustCrypto/block-ciphers/tree/master/speck"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
keywords = ["crypto", "speck", "block-cipher"]
documentation = "https://docs.rs/speck-cipher"
repository = "https://github.com/RustCrypto/block-ciphers"
license = "Apache-2.0 OR MIT"
keywords = ["speck", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Speck block cipher algorithm"

[dependencies]
cipher = "0.5"
Expand Down
7 changes: 3 additions & 4 deletions threefish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "threefish"
version = "0.6.0"
description = "Threefish block cipher"
authors = ["The Rust-Crypto Project Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/threefish"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "threefish", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["threefish", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Threefish block cipher"

[dependencies]
cipher = { version = "0.5", optional = true }
Expand Down
7 changes: 3 additions & 4 deletions twofish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[package]
name = "twofish"
version = "0.8.0"
description = "Twofish block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/twofish"
repository = "https://github.com/RustCrypto/block-ciphers"
keywords = ["crypto", "twofish", "block-cipher"]
license = "MIT OR Apache-2.0"
keywords = ["twofish", "block-cipher"]
categories = ["cryptography", "no-std"]
description = "Twofish block cipher"

[dependencies]
cipher = "0.5"
Expand Down
Loading