oxirush-security 0.1.0

5G security algorithms — KDF, NIA1/2/3, NEA0/1/2/3, SUCI concealment per TS 33.501
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 = "2024"
rust-version = "1.85"
name = "oxirush-security"
version = "0.1.0"
authors = ["Valentin D'Emmanuele"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "5G security algorithms — KDF, NIA1/2/3, NEA0/1/2/3, SUCI concealment per TS 33.501"
readme = "README.md"
keywords = [
    "5g",
    "security",
    "nas",
    "3gpp",
    "telecom",
]
categories = [
    "cryptography",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/linouxis9/oxirush"
resolver = "2"

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

[[example]]
name = "integrity"
path = "examples/integrity.rs"

[[example]]
name = "key_derivation"
path = "examples/key_derivation.rs"

[[example]]
name = "suci_conceal"
path = "examples/suci_conceal.rs"

[dependencies.aes]
version = "0.8"

[dependencies.cipher]
version = "0.4"

[dependencies.cmac]
version = "0.7"

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.p256]
version = "0.13"
features = ["ecdh"]

[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2"

[dependencies.thiserror]
version = "2"

[dependencies.x25519-dalek]
version = "2"
features = [
    "getrandom",
    "static_secrets",
]

[dependencies.zeroize]
version = "1"
features = ["derive"]

[dev-dependencies]