Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.getrandom()
方法用于生成适合加密使用的大小随机字节的字符串,或者可以说此方法生成包含随机字符的字符串。它也可以用来为user-space随机数生成器提供种子。它可以返回的字节数少于请求的字节数。
用法: os.getrandom(size, flag)
参数:
size:它是字符串随机字节的大小
flag:它是一个位掩码,可以包含零个或多个标志或。标志为os.GRND_RANDOM和GRND_NONBLOCK。
返回值:此方法返回一个字符串,该字符串表示适合加密用途的随机字节。
标志–
os.GRND_NONBLOCK: If this flag is set then getrandom() does not block but instead immediately raises BlockingIOError if no random bytes are available to read.
os.GRND_RANDOM: If this bit is set then random bytes are drawn from the /dev/random pool.
示例1:
# Python program to explain os.getrandom() method
# importing os module
import os
# Declaring size
size = 5
# Using os.getrandom() method
# Using os.GRND_NONBLOCK flag
result = os.getrandom(size, os.GRND_NONBLOCK)
# Print the random bytes string
# Output will be different everytime
print(result)
输出:
b'5\n\xe0\x98\x15'
示例2:
# Python program to explain os.getrandom() method
# importing os module
import os
# Declaring size
size = 5
# Using os.getrandom() method
# Using os.GRND_RANDOM flag
result = os.getrandom(size, os.GRND_RANDOM)
# Print the random bytes string
# Output will be different everytime
print(result)
输出:
b'\xce\xc8\xf3\x95%'
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python hasattr()用法及代码示例
- Python PIL putdata()用法及代码示例
- Python PIL getcolors()用法及代码示例
- Python PIL tobytes()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python os.get_blocking()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python PIL putalpha()用法及代码示例
注:本文由纯净天空筛选整理自Rajnis09大神的英文原创作品 Python | os.getrandom() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。