Linux 隨機數生成

2022-03-26 09:27:58 字數 1061 閱讀 3666

使用dd命令擷取/dev/urandom

dd if=/dev/urandom bs=1 count=20

2>/dev/null|base64|rev|cut --bytes 3-|rev

生成10個小寫字母

< /dev/urandom tr -dc [a-z] | head --bytes 10;echo
生成10個大寫字母

< /dev/urandom tr -dc [a-z] | head --bytes 10;echo
生成10個數字

< /dev/urandom tr -dc [:digit:] | head --bytes 10;echo
利用時間和雜湊函式

date +%s | sha256sum | base64 | head --bytes 10;echo
openssl rand子命令

openssl rand 產生的是隨機bytes位元組,直接輸出會亂碼,故用base64或hex編碼

使用base64編碼可能會有 / + = 等特殊字元

結合fold命令

tr -dc [:digit:] < /dev/urandom | fold --width 10 | head -1

使用strings提取ascii字元

strings /dev/urandom | grep -o '

[[:digit:]]

' | head -10 | tr -d '

\n';echo

linux隨機數生成

隨機數多應用在密碼的隨機生成 隨機數生成 random 1 32767 11 內部系統變數 random 1 32767 22 awk begin 33 openssl base64 hex openssl rand base64 8 md5sum cut c1 8 八位字母和數字的組合,3a618...

隨機生成隨機數

現畫乙個command命令按鈕,進行貼上。private sub command1 click show me scale 0,0 18,8 me.auto redraw true me.draw mode 2 circle 3,4 3,vb red me.auto redraw false lin...

隨機數生成

原型 void srand unsigned seed 用法 srand和rand 配合使用產生偽隨機數序列。rand函式在產生隨機數前,需要系統提供的生成偽隨機數序列的種子,rand根據這個種子的值產生一系列隨機數。如果系統提供的種子沒有變化,每次呼叫rand函式生成的偽隨機數序列都是一樣的。sr...