supplicant-psk
v0.0.1
Published
CLI for generating hash for wpa_supplicant.conf
Downloads
6
Readme
Supplicant PSK
CLI program for generating a hash from plain text password for wpa_supplicant.conf. This is useful if you don't have access to a Linux machine and therefore can't use the wpa_passphrase
command.
Install
npm install -g supplicant-psk
Running
Run:
$ supplicant-psk [YOUR-SSID] [PLAIN-TEXT-PASSWORD]
The program should output a hash which you can then use on the wpa_supplicant.conf file like so:
network={
ssid="YOUR-SSID"
psk=[insert-hash-here]
}