summaryrefslogtreecommitdiff
path: root/libcrypt/libcrypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcrypt/libcrypt.h')
-rw-r--r--libcrypt/libcrypt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libcrypt/libcrypt.h b/libcrypt/libcrypt.h
index fcad6aed0..67733d17f 100644
--- a/libcrypt/libcrypt.h
+++ b/libcrypt/libcrypt.h
@@ -9,9 +9,11 @@
#define __LIBCRYPT_H__
extern char *__md5_crypt(const unsigned char *pw, const unsigned char *salt) attribute_hidden;
+extern char *__sha256_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 *__sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen) 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 */