In Files

  • securerandom.rb

Class/Module Index [+]

Quicksearch

SecureRandom

Secure random number generator interface.

This library is an interface to secure random number generators which are suitable for generating session keys in HTTP cookies, etc.

You can use this library in your application by requiring it:

require 'securerandom'

It supports the following secure random number generators:

  • openssl

  • /dev/urandom

  • Win32

SecureRandom is extended by the Random::Formatter module which defines the following methods:

  • alphanumeric

  • base64

  • choose

  • ::gen_random

  • hex

  • rand

  • random_bytes

  • random_number

  • urlsafe_base64

  • uuid

These methods are usable as class methods of SecureRandom such as SecureRandom.hex.

If a secure random number generator is not available, NotImplementedError is raised.

Public Class Methods

bytes(n) click to toggle source
 
               # File securerandom.rb, line 41
def bytes(n)
  return gen_random(n)
end
            
gen_random(n) click to toggle source
Alias for: gen_random_openssl
There is an updated format of the API docs for this version here.