aboutsummaryrefslogtreecommitdiff
path: root/libbb/pw_encrypt.c
blob: e9cf4e3b8ec5f8d0c49145e7d5e5a8f011b031e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* vi: set sw=4 ts=4: */
/*
 * Utility routine.
 *
 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
 *
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */

#include "libbb.h"
#include <crypt.h>

char *pw_encrypt(const char *clear, const char *salt)
{
	/* Was static char[BIGNUM]. Malloced thing works as well */
	static char *cipher;

#if 0 /* was CONFIG_FEATURE_SHA1_PASSWORDS, but there is no such thing??? */
	if (strncmp(salt, "$2$", 3) == 0) {
		return sha1_crypt(clear);
	}
#endif

	free(cipher);
	cipher = xstrdup(crypt(clear, salt));
	return cipher;
}