摘要: from hashlib import pbkdf2_hmac password = '12345678' SSID = 'ssid' PMK = pbkdf2_hmac('sha1', str.encode(password), str.encode(SSID), 4096, 32).hex() 阅读全文
posted @ 2020-07-30 15:34 twfb 阅读(536) 评论(0) 推荐(0) 编辑