8 Ekim 2021 Cuma

openssl rand aracı - Random Byte Üretir

Giriş
Random byte üretir. Açıklaması şöyle
SYNOPSIS
       openssl rand [-help] [-out file] [-rand file...]  [-writerand file]
       [-base64] [-hex] num

DESCRIPTION
   This command generates num random bytes using 
   cryptographically secure pseudo random number generator (CSPRNG).

Örnek
Şöyle yaparız.  20 tane hexadecimal sayı üretir.
$ /usr/bin/openssl rand -hex 20
51b40b347dfccefa9b4f8a13d36c4564760c2f82
Örnek
Şöyle yaparız.  741 byte'lık veri üretir.
/usr/bin/openssl rand -base64 741 > $TMPFILE
Örnek
Şöyle yaparız. 14 byte'lık rastgele veri üretir. Bunu da Base64 olarak kodekler.
openssl rand -base64 14

Hiç yorum yok:

Yorum Gönder