diff options
Diffstat (limited to 'libcrypt/libcrypt.h')
-rw-r--r-- | libcrypt/libcrypt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcrypt/libcrypt.h b/libcrypt/libcrypt.h index 11866200c..fcad6aed0 100644 --- a/libcrypt/libcrypt.h +++ b/libcrypt/libcrypt.h @@ -9,8 +9,11 @@ #define __LIBCRYPT_H__ extern char *__md5_crypt(const unsigned char *pw, const unsigned char *salt) attribute_hidden; +extern char *__sha512_crypt(const unsigned char *pw, const unsigned char *salt) attribute_hidden; extern char *__des_crypt(const unsigned char *pw, const unsigned char *salt) attribute_hidden; +extern char *__sha512_crypt_r (const char *key, const char *salt, char *buffer, int buflen) attribute_hidden; + /* shut up gcc-4.x signed warnings */ #define strcpy(dst,src) strcpy((char*)dst,(char*)src) #define strlen(s) strlen((char*)s) |