Module: CloudStackClient::Helpers

Defined in:
lib/cloud_stack_client/helpers.rb

Overview

Shared helper functions

Class Method Summary collapse

Class Method Details

.hash_password(password) ⇒ Object

Default password hash algorithm



4
5
6
# File 'lib/cloud_stack_client/helpers.rb', line 4

def self.hash_password(password)
  Digest::MD5.hexdigest(password)
end