Open In App

Ruby | Random random_bytes() function

Last Updated : 17 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Random#random_bytes() : random_bytes() is a Random class method which returns a random random_binary string.

Syntax: Random.random_bytes()

Parameter: Random values

Return: a random random_binary string.

Example #1 :




# Ruby code for Random.random_bytes() method
  
# loading library
require 'securerandom'
  
# declaring Random value
date_a = SecureRandom.random_bytes
  
# declaring Random value
date_b = SecureRandom.random_bytes
  
# random_bytes value
puts "Random random_bytes form : #{date_a}\n\n"
  
puts "Random random_bytes form : #{date_b}\n\n"


Output :

Random random_bytes form : ??    ?Y?[?c5???,

Random random_bytes form : aG]???6, ??t?;A;p

Example #2 :




# Ruby code for Random.random_bytes() method
  
# loading library
require 'securerandom'
  
# declaring Random value
date_a = SecureRandom.random_bytes
  
# declaring Random value
date_b = SecureRandom.random_bytes
  
# random_bytes value
puts "Random random_bytes form : #{date_a}\n\n"
  
puts "Random random_bytes form : #{date_b}\n\n"


Output :

Random random_bytes form : ?????~x?2??&D?w

Random random_bytes form : ?f??o?F??z/??h


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads