oxicrypto-kdf 0.1.0

Pure Rust KDF implementations for OxiCrypto (HKDF, PBKDF2, Argon2id, scrypt)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.89"
name = "oxicrypto-kdf"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust KDF implementations for OxiCrypto (HKDF, PBKDF2, Argon2id, scrypt)"
readme = false
keywords = [
    "cryptography",
    "hkdf",
    "pbkdf2",
    "argon2",
    "scrypt",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"

[features]
default = []
std = [
    "sha2/alloc",
    "oxicrypto-core/std",
]

[lib]
name = "oxicrypto_kdf"
path = "src/lib.rs"

[[test]]
name = "kat_argon2"
path = "tests/kat_argon2.rs"

[[test]]
name = "kat_argon2id"
path = "tests/kat_argon2id.rs"

[[test]]
name = "kat_balloon"
path = "tests/kat_balloon.rs"

[[test]]
name = "kat_hkdf"
path = "tests/kat_hkdf.rs"

[[test]]
name = "kat_hkdf_extract_expand"
path = "tests/kat_hkdf_extract_expand.rs"

[[test]]
name = "kat_pbkdf2"
path = "tests/kat_pbkdf2.rs"

[[test]]
name = "kat_pbkdf2_rfc8018"
path = "tests/kat_pbkdf2_rfc8018.rs"

[[test]]
name = "kat_scrypt"
path = "tests/kat_scrypt.rs"

[dependencies.argon2]
version = "0.6.0-rc.8"
features = [
    "alloc",
    "password-hash",
]
default-features = false

[dependencies.digest]
version = "0.11.3"
features = ["alloc"]
default-features = false

[dependencies.hkdf]
version = "0.13.0"
default-features = false

[dependencies.hmac]
version = "0.13.0"
default-features = false

[dependencies.oxicrypto-core]
version = "0.1.0"

[dependencies.oxicrypto-rand]
version = "0.1.0"

[dependencies.password-hash]
version = "0.6.1"
features = [
    "alloc",
    "phc",
]
default-features = false

[dependencies.pbkdf2]
version = "0.13.0"
features = [
    "sha2",
    "hmac",
]
default-features = false

[dependencies.scrypt]
version = "0.12.0"
features = ["password-hash"]
default-features = false

[dependencies.sha2]
version = "0.11.0"
features = ["alloc"]
default-features = false

[dependencies.subtle]
version = "2.6.1"
default-features = false