Python 生成 PSK (PSK认证时,PMK就是PSK)

from hashlib import pbkdf2_hmac
password = '12345678'
SSID = 'ssid'
PMK =  pbkdf2_hmac('sha1', str.encode(password), str.encode(SSID), 4096, 32).hex()
print (PMK)
# 'eaad613a6acdd119b76ba13a0bcdd1eab41330853eb24896bf30c6cf220b7159'
posted @ 2020-07-30 15:34  twfb  阅读(522)  评论(0编辑  收藏  举报