[package]
edition = "2024"
name = "nc-polynomial"
version = "0.2.0"
authors = [
"Raja Lehtihet",
"Wael El Oraiby",
]
build = false
include = [
"src/**",
"examples/**",
"benches/**",
"README.md",
"LICENSE",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polynomial arithmetic over Z_q[x] with NTT support and validated ring contexts"
documentation = "https://docs.rs/nc-polynomial"
readme = "README.md"
keywords = [
"polynomial",
"ntt",
"rlwe",
"lattice-crypto",
"ring-arithmetic",
]
categories = [
"algorithms",
"cryptography",
"mathematics",
]
license = "MIT"
repository = "https://github.com/NeoCogi/nc-polynomial"
[lib]
name = "nc_polynomial"
path = "src/lib.rs"
[[example]]
name = "helpers_codec"
path = "examples/helpers_codec.rs"
[[example]]
name = "helpers_sampling"
path = "examples/helpers_sampling.rs"
[[example]]
name = "rlwe_pke"
path = "examples/rlwe_pke.rs"
[[bench]]
name = "multiplication_speed"
path = "benches/multiplication_speed.rs"
harness = false
[dependencies.rand_core]
version = "0.10"