]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / str2saltedsha512.rb
1 #
2 # str2saltedsha512.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:str2saltedsha512, :type => :rvalue, :doc => <<-EOS
7 This converts a string to a salted-SHA512 password hash (which is used for
8 OS X versions >= 10.7). Given any simple string, you will get a hex version
9 of a salted-SHA512 password hash that can be inserted into your Puppet
10 manifests as a valid password attribute.
11     EOS
12   ) do |arguments|
13     require 'digest/sha2'
14
15     raise(Puppet::ParseError, "str2saltedsha512(): Wrong number of arguments " +
16       "passed (#{arguments.size} but we require 1)") if arguments.size != 1
17
18     password = arguments[0]
19
20     unless password.is_a?(String)
21       raise(Puppet::ParseError, 'str2saltedsha512(): Requires a ' +
22         "String argument, you passed: #{password.class}")
23     end
24
25     seedint    = rand(2**31 - 1)
26     seedstring = Array(seedint).pack("L")
27     saltedpass = Digest::SHA512.digest(seedstring + password)
28     (seedstring + saltedpass).unpack('H*')[0]
29   end
30 end
31
32 # vim: set ts=2 sw=2 et :