oxicrypto-mac 0.1.0

Pure Rust MAC implementations for OxiCrypto (HMAC-SHA-256, HMAC-SHA-512)
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-mac"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust MAC implementations for OxiCrypto (HMAC-SHA-256, HMAC-SHA-512)"
readme = false
keywords = [
    "cryptography",
    "hmac",
    "mac",
    "authentication",
    "pure-rust",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxicrypto"

[features]
default = []
std = ["oxicrypto-core/std"]

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

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

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

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

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

[dependencies.aes-cipher05]
version = "0.9.1"
default-features = false
package = "aes"

[dependencies.blake3]
version = "1.8.5"
default-features = false

[dependencies.cmac]
version = "0.8.0"
default-features = false

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

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

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

[dependencies.poly1305]
version = "0.9.0"
default-features = false

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

[dependencies.sha3]
version = "0.12.0"
features = ["alloc"]
default-features = false

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

[dependencies.tiny-keccak]
version = "2.0.2"
features = ["kmac"]
default-features = false