From 1eae0f51b91f796f51d1866d1cddcd8b0260c325 Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 5 May 2011 01:09:42 +0000 Subject: s/shaN_crypt/crypt_shaN/g to be a more consistent with the existing naming. Reviewed by: markm --- lib/libcrypt/crypt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libcrypt/crypt.h') diff --git a/lib/libcrypt/crypt.h b/lib/libcrypt/crypt.h index 6a73fc9..b33ad09 100644 --- a/lib/libcrypt/crypt.h +++ b/lib/libcrypt/crypt.h @@ -36,8 +36,8 @@ char *crypt_des(const char *pw, const char *salt); char *crypt_md5(const char *pw, const char *salt); char *crypt_nthash(const char *pw, const char *salt); char *crypt_blowfish(const char *pw, const char *salt); -char *sha256_crypt (const char *pw, const char *salt); -char *sha512_crypt (const char *pw, const char *salt); +char *crypt_sha256 (const char *pw, const char *salt); +char *crypt_sha512 (const char *pw, const char *salt); extern void _crypt_to64(char *s, u_long v, int n); extern void b64_from_24bit(uint8_t B2, uint8_t B1, uint8_t B0, int n, int *buflen, char **cp); -- cgit v1.1