From 74ac452eebd4d3520c1f610260d55b7e7233eca9 Mon Sep 17 00:00:00 2001 From: Stefan Kreutz Date: Mon, 3 Jan 2022 15:49:53 +0100 Subject: Add initial implementation --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..2987092 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "wpa-psk" +version = "0.1.0" +authors = ["Stefan Kreutz "] +edition = "2021" +description = "Compute the WPA-PSK of a Wi-FI SSID and passphrase" +readme = "README.md" +repository = "https://www.skreutz.com/repos/wpa-psk-rs.git" +license = "MIT OR Apache-2.0" +keywords = ["wifi", "wpa", "password", "hash"] +categories = ["command-line-utilities", "algorithms"] +publish = true + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +pbkdf2 = { version = "0.10.0", default-features = false } +hmac = { version = "0.12.0", default-features = false } +sha-1 = { version = "0.10.0", default-features = false } +clap = { version = "3.0.0-rc.11", features = ["derive"] } -- cgit v1.2.3