[package]
edition = "2021"
name = "shamir-algorithm"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of Shamir's Secret Sharing algorithm using Galois Field arithmetic over GF(256)"
readme = "README.md"
keywords = [
"cryptography",
"secret-sharing",
"shamir",
"threshold",
]
categories = [
"cryptography",
"algorithms",
]
license = "MIT"
repository = "https://github.com/yourusername/ShamirRust"
resolver = "3"
[lib]
name = "shamir_algorithm"
path = "src/lib.rs"
[dependencies.rand]
version = "0.9"
features = ["small_rng"]