Python日记_os.urandom

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python日记_os.urandom相关的知识,希望对你有一定的参考价值。

Python中os.urandom(n)的作用

随即产生n个字节的字符串,可以作为随机加密key使用~

 

>>> index = os.urandom(2)  
>>> print index  
墿  
>>> index = os.urandom(2)  
>>> print index  
氡  
>>> index = os.urandom(2)  
>>> print index  
Ε  
>>> index = os.urandom(2)  
>>> print index  
E  
>>> index = os.urandom(2)  
>>> print index  
€H  
>>> index = os.urandom(2)  
>>> print index  
I?  
>>> index = os.urandom(2)  
>>> print index  

 

以上是关于Python日记_os.urandom的主要内容,如果未能解决你的问题,请参考以下文章

Python 3 os.urandom

python 中md5 和 sha1 加密, md5 + os.urandom 生成全局唯一ID

python中的随机数生成

python日记___name__ == '__main__'

使用AES + CTR的PyCrypto问题

python日记_切片