[dependencies.aes-gcm-siv]
optional = true
version = "0"
[dependencies.argon2]
optional = true
version = "0"
[dependencies.bcrypt]
optional = true
version = "0"
[dependencies.chacha20poly1305]
features = ["rand_core"]
optional = true
version = "0"
[dependencies.hex]
optional = true
version = "0"
[dependencies.kenzu]
version = "0.1.7"
[dependencies.nekotracing]
optional = true
version = "0"
[dependencies.pqcrypto-mldsa]
optional = true
version = "0"
[dependencies.pqcrypto-mlkem]
optional = true
version = "0"
[dependencies.pqcrypto-traits]
optional = true
version = "0"
[dependencies.rand]
version = "0"
[dependencies.regex]
version = "1"
[dev-dependencies]
[features]
aes = ["aes-gcm-siv", "hex"]
argon2 = ["dep:argon2", "hex"]
bcrypt = ["dep:bcrypt"]
chacha20 = ["chacha20poly1305", "hex"]
default = ["aes"]
full = ["chacha20", "aes", "argon2", "pqkem", "pqdsa", "bcrypt", "tracing"]
postquantum = ["pqkem", "pqdsa", "hex"]
pqdsa = ["pqcrypto-mldsa", "pqcrypto-traits"]
pqkem = ["pqcrypto-mlkem", "pqcrypto-traits"]
tracing = ["nekotracing"]
[lib]
name = "zipher"
path = "src/lib.rs"
[package]
authors = ["pas2rust <pas2000@proton.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "security"]
description = "Cryptography utilities and implementations including Argon2, bcrypt, post-quantum algorithms and JWT support"
documentation = "https://docs.rs/zipher"
edition = "2024"
exclude = ["tests/*", "tests", "main.rs"]
homepage = "https://github.com/pas2rust/zipher"
keywords = ["cryptography", "argon2", "bcrypt", "post-quantum", "jwt"]
license = "MIT OR Apache-2.0"
name = "zipher"
readme = "README.md"
repository = "https://github.com/pas2rust/zipher"
version = "0.2.0"