source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 8 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

File size: 1019 bytes
Line 
1#
2# str2saltedsha512.rb
3#
4
5module Puppet::Parser::Functions
6 newfunction(:str2saltedsha512, :type => :rvalue, :doc => <<-EOS
7This converts a string to a salted-SHA512 password hash (which is used for
8OS X versions >= 10.7). Given any simple string, you will get a hex version
9of a salted-SHA512 password hash that can be inserted into your Puppet
10manifests 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
30end
31
32# vim: set ts=2 sw=2 et :
Note: See TracBrowser for help on using the repository browser.