note: i am not looking for workaround, i am looking for a plain ruby solution!

this question is the similar to this question, but it isn't answerd, its just a workaround to a shell commando there.

i want to generate a sha512 encrypted string which is compatible with the format in debian /etc/shadow.

the following create a correct string with php:

$salt = 'fGn9LR75';
$hash = crypt('test', '$6$'.$salt);
// hash is:
// $6$fGn9LR75$YpI/vJHjEhvrYp5/eUSRinpiXdMthCxFWSEo0ktFNUaRBsA7pCWYzzmQptmnfyHno9YEJFNHYuESj3nAQmSzc1

as far as i know this a normal, salted base64 encoded string. the spec of the sha generation method is here

link|improve this question

75% accept rate
1  
It looks like your shift key is broken. – the Tin Man Jan 28 at 4:59
no, i just prefer to write in lowercase. – c33s Jan 28 at 5:14
feedback

1 Answer

up vote 0 down vote accepted
irb(main):001:0> salt = 'fGn9LR75';
irb(main):002:0* hash = 'test'.crypt('$6$' + salt);
irb(main):003:0* hash
=> "$6$fGn9LR75$YpI/vJHjEhvrYp5/eUSRinpiXdMthCxFWSEo0ktFNUaRBsA7pCWYzzmQptmnfyHno9YEJFNHYuESj3nAQmSzc1"

The crypt() algorithm for SHA256/512 is not simply a base64-encoded hash. It's an intentionally crazy process which involves multiple hashes running in parallel.

link|improve this answer
works like charm, also in puppet. thank you very much – c33s Jan 28 at 6:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.