diff options
Diffstat (limited to 'ext/standard/php_crypt_r.h')
-rw-r--r-- | ext/standard/php_crypt_r.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/standard/php_crypt_r.h b/ext/standard/php_crypt_r.h index 57143dbcc..e5fbf2601 100644 --- a/ext/standard/php_crypt_r.h +++ b/ext/standard/php_crypt_r.h @@ -1,9 +1,9 @@ -/* $Id: php_crypt_r.h 272370 2008-12-31 11:15:49Z sebastian $ */ +/* $Id: php_crypt_r.h 293036 2010-01-03 09:23:27Z sebastian $ */ /* +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2009 The PHP Group | + | Copyright (c) 1997-2010 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -49,6 +49,8 @@ PHPAPI char *php_crypt_r (const char *__key, const char *__salt, struct php_cryp extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out); extern char * php_crypt_blowfish_rn(__CONST char *key, __CONST char *setting, char *output, int size); +extern char * php_sha512_crypt_r (const char *key, const char *salt, char *buffer, int buflen); +extern char * php_sha256_crypt_r (const char *key, const char *salt, char *buffer, int buflen); #ifdef __cplusplus } |