module CryptBufferConcern::Random

Public Class Methods

included(base) click to toggle source

This module provides an interface to generate a CryptBuffer with n bytes of random Integer between 1 and 256 This is required for generating pseudo keys

# File lib/crypto-toolbox/crypt_buffer/concerns/random.rb, line 8
def self.included(base)
  base.extend(ClassMethods)
end