-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "ofb"
version = "0.7.0"
description = "Output Feedback (OFB) block cipher mode of operation"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/ofb"
repository = "https://github.com/RustCrypto/block-modes"
keywords = ["crypto", "block-mode", "stream-cipher", "ciphers"]
categories = ["cryptography", "no-std"]
[dependencies]
cipher = { version = "0.5", features = ["stream-wrapper"] }
[dev-dependencies]
aes = "0.9"
cipher = { version = "0.5", features = ["dev"] }
hex-literal = "1"
[features]
alloc = ["cipher/alloc"]
block-padding = ["cipher/block-padding"]
zeroize = ["cipher/zeroize"]
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true