From 988c7921eacee0cf0b519788c143fe428972b0dc Mon Sep 17 00:00:00 2001 From: Stefan Kreutz Date: Sat, 28 May 2022 15:15:39 +0200 Subject: Extract wpa-psk-cli crate --- wpa-psk/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 wpa-psk/Cargo.toml (limited to 'wpa-psk/Cargo.toml') diff --git a/wpa-psk/Cargo.toml b/wpa-psk/Cargo.toml new file mode 100644 index 0000000..ca173f4 --- /dev/null +++ b/wpa-psk/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "wpa-psk" +version = "0.2.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/scm/git/wpa-psk.git" +license = "MIT OR Apache-2.0" +keywords = ["wifi", "wpa", "password", "hash"] +categories = ["algorithms"] +publish = true + +[dependencies] +pbkdf2 = { version = "0.11.0", default-features = false } +hmac = { version = "0.12.1", default-features = false } +sha-1 = { version = "0.10.0", default-features = false } -- cgit v1.2.3