crypt.c 784 B

123456789101112131415161718192021222324252627282930
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * crypt() for uClibc
  4. * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include <unistd.h>
  8. #include <crypt.h>
  9. #include "libcrypt.h"
  10. char *crypt(const char *key, const char *salt)
  11. {
  12. const unsigned char *ukey = (const unsigned char *)key;
  13. const unsigned char *usalt = (const unsigned char *)salt;
  14. if (salt[0] == '$' && salt[2] == '$') {
  15. if (*++salt == '1')
  16. return __md5_crypt(ukey, usalt);
  17. #ifdef __UCLIBC_HAS_SHA256_CRYPT_IMPL__
  18. else if (*salt == '5')
  19. return __sha256_crypt(ukey, usalt);
  20. #endif
  21. #ifdef __UCLIBC_HAS_SHA512_CRYPT_IMPL__
  22. else if (*salt == '6')
  23. return __sha512_crypt(ukey, usalt);
  24. #endif
  25. }
  26. return __des_crypt(ukey, usalt);
  27. }