[package]
edition = "2021"
rust-version = "1.75"
name = "noxtls-core"
version = "0.1.3"
authors = ["Argenox Technologies LLC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal implementation crate for noxtls: core profile flags, shared types, and utilities."
homepage = "https://noxtls.com"
documentation = "https://github.com/argenox/noxtls"
readme = "README.md"
keywords = [
"tls",
"crypto",
"security",
"networking",
]
categories = [
"cryptography",
"network-programming",
]
license = "GPL-2.0-only OR LicenseRef-Argenox-Commercial-License"
repository = "https://github.com/argenox/noxtls"
[features]
alloc = []
default = [
"std",
"alloc",
"profile-default",
]
feature-cert = []
feature-cert-write = []
feature-drbg = []
feature-dtls = []
feature-encryption = []
feature-hash = []
feature-pkc = []
feature-tls = []
feature-tls10 = []
feature-tls11 = []
feature-tls12 = []
feature-tls13 = []
policy-allow-legacy-algorithms = []
policy-allow-sha1-signatures = []
policy-strict-constant-time = []
profile-crypto-only = [
"feature-hash",
"feature-encryption",
"feature-drbg",
"feature-pkc",
]
profile-default = [
"feature-hash",
"feature-encryption",
"feature-drbg",
"feature-pkc",
"feature-cert",
"feature-tls",
"feature-tls12",
"feature-tls13",
"feature-dtls",
]
profile-fips-like = [
"feature-hash",
"feature-encryption",
"feature-drbg",
"feature-pkc",
"feature-cert",
"feature-tls",
"feature-tls12",
"feature-tls13",
]
profile-minimal-tls-client = [
"feature-hash",
"feature-encryption",
"feature-drbg",
"feature-pkc",
"feature-cert",
"feature-tls",
"feature-tls12",
"feature-tls13",
]
profile-tls-server-pki = [
"feature-hash",
"feature-encryption",
"feature-drbg",
"feature-pkc",
"feature-cert",
"feature-cert-write",
"feature-tls",
"feature-tls12",
"feature-tls13",
"feature-dtls",
]
std = []
[lib]
name = "noxtls_core"
path = "src/lib.rs"