[package]
name = "win-crypto-ng"
version = "0.5.1"
authors = ["Émile Grégoire <eg@emilegregoire.ca>", "Igor Matuszewski <Xanewok@gmail.com>"]
edition = "2021"
description = "Safe bindings to Windows Cryptography API: Next Generation"
repository = "https://github.com/emgre/win-crypto-ng"
documentation = "https://docs.rs/crate/win-crypto-ng"
readme = "README.md"
keywords = ["cng", "windows", "cryptoapi"]
categories = ["api-bindings", "os::windows-apis", "cryptography"]
license = "BSD-3-Clause"
rust-version = "1.60"
[badges]
maintenance = { status = "experimental" }
[dependencies]
winapi = { version = "0.3", features = ["bcrypt", "ntstatus", "winerror"] }
zeroize = { version = "1.1", optional = true }
rand_core = { version = ">= 0.5, <0.7", optional = true }
cipher = { version = "0.4.4", optional = true }
doc-comment = "0.3"
[dev-dependencies]
doc-comment = "0.3"
[features]
default = ["zeroize"]
rand = ["rand_core"]
block-cipher = ["cipher"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"