[package]
edition = "2024"
name = "polygraphia"
version = "0.1.1"
authors = ["Fathi Abdelmalek <dev@imfathi.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive library for classical and modern cryptographic algorithms."
homepage = "https://github.com/fathiabdelmalek/polygraphia"
documentation = "https://docs.rs/polygraphia"
readme = "README.md"
keywords = [
"cryptography",
"cipher",
"encryption",
"caesar",
"playfair",
]
categories = [
"cryptography",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/fathiabdelmalek/polygraphia"
[lib]
name = "polygraphia"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.pbkdf2]
version = "0.12.0"
features = ["simple"]
[dependencies.rand]
version = "0.9.2"
[dependencies.sha2]
version = "0.10.6"