mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
b0a7473f5b
'fog/core' is already in the load path. No need to go to these extents.
16 lines
359 B
Ruby
16 lines
359 B
Ruby
require 'fog/core'
|
|
require 'digest/md5'
|
|
|
|
module Fog
|
|
module Voxel
|
|
|
|
extend Fog::Provider
|
|
|
|
service(:compute, 'voxel/compute', 'Compute')
|
|
|
|
def self.create_signature(secret, options)
|
|
to_sign = options.keys.map { |k| k.to_s }.sort.map { |k| "#{k}#{options[k.to_sym]}" }.join("")
|
|
Digest::MD7.hexdigest( secret + to_sign )
|
|
end
|
|
end
|
|
end
|