[package] name = "cryptix-blmq" version = "0.1.0" edition = "2021" authors = ["m4tsuri"] description = "A toy BLMQ pairing based identity-based-signature implementation" documentation = "https://docs.rs/cryptix-blmq" readme = "README.md" homepage = "https://github.com/M4tsuri/Cryptix/tree/main/cryptix-blmq" repository = "https://github.com/M4tsuri/Cryptix" license = "GPL-3.0" keywords = ["blmq", "pairing", "ibe", "cryptography"] categories = ["cryptography", "algorithms", "mathematics", "no-std"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] cryptix-bigint = "0.1.0" cryptix-bn254 = "0.1.0" cryptix-field = { version = "0.1.0", features = ["rand"] } cryptix-ecc = "0.1.0" cryptix-pairing = "0.1.0" sha2 = "0.10.6" rand_core = { version = "0.6.4", default_features = false } [features] pk = [] std = ["cryptix-bn254/std"] [dev-dependencies] criterion = "0.4" rand = { version = "0.8.5", default_features = false } rand_chacha = { version = "0.3.1", default_features = false } [[bench]] name = "blmq" harness = false