We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b6ba1 commit dab42a8Copy full SHA for dab42a8
WPA-PSK-GEN/wpa-psk-gen.py
@@ -0,0 +1,10 @@
1
+#!/bin/env python3
2
+from passlib.utils import pbkdf2
3
+import binascii, sys
4
+
5
+# usage wpa-psk-genpy <Passphrase> <SSID>
6
+try :
7
+ print("PSK = ",binascii.hexlify(pbkdf2.pbkdf2(str.encode(sys.argv[1]), str.encode(sys.argv[2]), 4096, 32)).decode("utf-8"))
8
9
+except:
10
+ print("Usage wpa-psk-genpy <Passphrase> <SSID>")
0 commit comments