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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。