Class: RightScale::Platform::Rng

Inherits:
Object
  • Object
show all
Defined in:
lib/right_agent/platform/windows.rb,
lib/right_agent/platform/linux.rb,
lib/right_agent/platform/darwin.rb

Overview

Controller

Instance Method Summary collapse

Instance Method Details

#pseudorandom_bytes(count) ⇒ Object



419
420
421
422
423
424
425
# File 'lib/right_agent/platform/linux.rb', line 419

def pseudorandom_bytes(count)
  f = File.open('/dev/urandom', 'r')
  bytes = f.read(count)
  f.close

  bytes
end