Skip to content

Commit fe23bd4

Browse files
Update wpa-psk-gen.py
1 parent dab42a8 commit fe23bd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WPA-PSK-GEN/wpa-psk-gen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
from passlib.utils import pbkdf2
33
import binascii, sys
44

5-
# usage wpa-psk-genpy <Passphrase> <SSID>
5+
# usage wpa-psk-gen.py <Passphrase> <SSID>
66
try :
77
print("PSK = ",binascii.hexlify(pbkdf2.pbkdf2(str.encode(sys.argv[1]), str.encode(sys.argv[2]), 4096, 32)).decode("utf-8"))
88

99
except:
10-
print("Usage wpa-psk-genpy <Passphrase> <SSID>")
10+
print("Usage wpa-psk-gen.py <Passphrase> <SSID>")

0 commit comments

Comments
 (0)