On 21/05/2010 20:10, Matt Lawrence wrote:
> This is probably a really simple question to answer. I would like to
> generate a password hash programatically that can be pushed out to a bunch
> of Linux servers. Writing the code to generate a random password and then
> mailing it to the person is e
On Fri, May 21, 2010 at 5:05 PM, Robert Hajime Lanning
wrote:
> Mathew Snyder wrote:
>>
>> I think I know the answer to this but I'm asking just to make sure.
>> Can the salt be *anything*?
>>
>> -Mathew
>
> up to eight characters from [./0-9A-Za-z]
>
> --
> END OF LINE
> --MCP
> ___
Mathew Snyder wrote:
>
> I think I know the answer to this but I'm asking just to make sure.
> Can the salt be *anything*?
>
> -Mathew
up to eight characters from [./0-9A-Za-z]
--
END OF LINE
--MCP
___
Tech mailing list
Tech@lopsa.org
http://l
openssl passwd -1
seph
Matt Lawrence writes:
> This is probably a really simple question to answer. I would like to
> generate a password hash programatically that can be pushed out to a bunch
> of Linux servers. Writing the code to generate a random password and then
> mailing it to the p
On Fri, May 21, 2010 at 3:44 PM, Robert Hajime Lanning
wrote:
> Luke Hankins wrote:
>> * Robert Hajime Lanning wrote:
>>> libc crypt() call.
>>
>> What he said, but if you need further pointers for your language of choice,
>> try googling for [encrypt md5 password $LANGUAGE] and you'll get example
Luke Hankins wrote:
> * Robert Hajime Lanning wrote:
>> libc crypt() call.
>
> What he said, but if you need further pointers for your language of choice,
> try googling for [encrypt md5 password $LANGUAGE] and you'll get examples
> in the first few hits, I'm sure.
>
> -Luke
#! /usr/bin/perl
pr
libc crypt() call.
Pass in the salt prefixed with "$1$" (the key for telling crypt to use
the MD5 algorithm.)
http://linux.die.net/man/3/crypt
Matt Lawrence wrote:
> MD5. It appears to be the standard (and default) that Linux has used for
> years now.
>
> On Fri, 21 May 2010, Robert Hajime L
MD5. It appears to be the standard (and default) that Linux has used for
years now.
On Fri, 21 May 2010, Robert Hajime Lanning wrote:
> MD5 or crypt?
>
> Matt Lawrence wrote:
>> This is probably a really simple question to answer. I would like to
>> generate a password hash programatically tha
MD5 or crypt?
Matt Lawrence wrote:
> This is probably a really simple question to answer. I would like to
> generate a password hash programatically that can be pushed out to a bunch
> of Linux servers. Writing the code to generate a random password and then
> mailing it to the person is easy
This is probably a really simple question to answer. I would like to
generate a password hash programatically that can be pushed out to a bunch
of Linux servers. Writing the code to generate a random password and then
mailing it to the person is easy, I just don't know how to generate the
has
10 matches
Mail list logo