#python version > 3.6
def aes_key_gen():
import random
import string
aes_key:str=''.join(random.choices(string.ascii_letters + string.digits, k=16))
print(aes_key)
return aes_key
aes_key_gen()
#6w73oeW9HmCmLYaq
python 随机串作为aes密钥
于 2022-09-01 14:36:56 首次发布
1903

被折叠的 条评论
为什么被折叠?



