pw_encrypt.c 751 B

1234567891011121314151617181920212223242526272829
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routine.
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  8. */
  9. #include "libbb.h"
  10. #include <crypt.h>
  11. char *pw_encrypt(const char *clear, const char *salt)
  12. {
  13. static char cipher[128];
  14. char *cp;
  15. #if 0 /* was CONFIG_FEATURE_SHA1_PASSWORDS, but there is no such thing??? */
  16. if (strncmp(salt, "$2$", 3) == 0) {
  17. return sha1_crypt(clear);
  18. }
  19. #endif
  20. cp = (char *) crypt(clear, salt);
  21. /* if crypt (a nonstandard crypt) returns a string too large,
  22. truncate it so we don't overrun buffers and hope there is
  23. enough security in what's left */
  24. safe_strncpy(cipher, cp, sizeof(cipher));
  25. return cipher;
  26. }