2002-06-23 04:24:25 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routine.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2002-06-23 04:24:25 +00:00
|
|
|
*
|
2006-07-10 11:41:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-06-23 04:24:25 +00:00
|
|
|
*/
|
|
|
|
|
2006-06-18 20:20:07 +00:00
|
|
|
#include "libbb.h"
|
2002-06-23 04:24:25 +00:00
|
|
|
#include <crypt.h>
|
|
|
|
|
2006-03-06 20:47:33 +00:00
|
|
|
char *pw_encrypt(const char *clear, const char *salt)
|
2002-06-23 04:24:25 +00:00
|
|
|
{
|
2007-06-18 10:35:06 +00:00
|
|
|
/* Was static char[BIGNUM]. Malloced thing works as well */
|
|
|
|
static char *cipher;
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-09-27 23:31:59 +00:00
|
|
|
#if 0 /* was CONFIG_FEATURE_SHA1_PASSWORDS, but there is no such thing??? */
|
2002-06-23 04:24:25 +00:00
|
|
|
if (strncmp(salt, "$2$", 3) == 0) {
|
|
|
|
return sha1_crypt(clear);
|
|
|
|
}
|
|
|
|
#endif
|
2007-06-18 10:35:06 +00:00
|
|
|
|
|
|
|
free(cipher);
|
|
|
|
cipher = xstrdup(crypt(clear, salt));
|
2002-06-23 04:24:25 +00:00
|
|
|
return cipher;
|
|
|
|
}
|