我正在尝试使用以下代码生成随机优惠券代码。我正在使用Hashids pip 包来实现这一点
寻找以下代码的缺点?
from hashids import Hashids
hashid = Hashids(salt='UNIQUE ID', min_length=25)
print hashid.encrypt(0) # aDnwJKQZ
print hashid.encrypt(999) # p32jAqVW
我正在尝试使用以下代码生成随机优惠券代码。我正在使用Hashids pip 包来实现这一点
寻找以下代码的缺点?
from hashids import Hashids
hashid = Hashids(salt='UNIQUE ID', min_length=25)
print hashid.encrypt(0) # aDnwJKQZ
print hashid.encrypt(999) # p32jAqVW