sha1算法

加密代码如下:

from hashlib import sha1

s = sha1()
s.update("1".encode())
print(s.hexdigest())

你可能感兴趣的:(js逆向爬虫案例,爬虫)