Crates.io | wpa-psk-cli |
lib.rs | wpa-psk-cli |
version | 0.1.5 |
source | src |
created_at | 2022-05-28 13:18:07.42065 |
updated_at | 2024-03-06 01:17:10.034766 |
description | A command-line utility to compute the WPA-PSK of a Wi-FI SSID and passphrase |
homepage | |
repository | https://git.skreutz.com/wpa-psk.git |
max_upload_size | |
id | 595717 |
size | 20,193 |
This is a command-line utility to compute the WPA pre-shared key of a Wi-Fi
SSID and passphrase. See also the corresponding Rust library wpa-psk
.
Hash a typical SSID and passphrase:
$ wpa-psk home password123
0xde811641af2c516ffd35cc6f851b3abf03c7c84fc703cfb580f1c0456943cdc0
Hash special albeit valid credentials:
$ wpa-psk "123abcABC.,-" "456defDEF *<:D"
0x8a366e5bc51cd5d8fbbeffacc5f1af23fac30e3ac93cdcc368fafbbf63a1085c
Hash invalid credentials:
$ wpa-psk --force bar 2short
0xcb5de4e4d23b2ab0bf5b9ba0fe8132c1e2af3bb52298ec801af8ad520cea3437
You can install the wpa-psk
utility using Cargo:
$ cargo install wpa-psk-cli
This work is distributed under the terms of both, the MIT License and the Apache License, Version 2.0.
Contributions are welcome! Please contact me via email.
The popular wpa_supplicant comes with a similar tool, wpa_passphrase(8)
.