summaryrefslogtreecommitdiff
path: root/ext/standard/php_crypt.h
diff options
context:
space:
mode:
authorAnthony Ferrara <ircmaxell@gmail.com>2012-06-28 14:44:04 -0400
committerAnthony Ferrara <ircmaxell@gmail.com>2012-06-28 14:44:04 -0400
commit6bb3865a235d437d91df1940b0caad6995b69d4c (patch)
tree2ba4342c693f9ef30aa6b83d0c775a17ddfeee7a /ext/standard/php_crypt.h
parent0dd2f16b148f4054d65645b9cf971fe08824d78d (diff)
downloadphp-git-6bb3865a235d437d91df1940b0caad6995b69d4c.tar.gz
Refactor crypt to use an external working function
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r--ext/standard/php_crypt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h
index 93b232896a..1dffb0bc3e 100644
--- a/ext/standard/php_crypt.h
+++ b/ext/standard/php_crypt.h
@@ -23,6 +23,7 @@
#ifndef PHP_CRYPT_H
#define PHP_CRYPT_H
+PHPAPI int crypt_execute(const char *password, const int pass_len, const char *salt, int salt_len, char **result);
PHP_FUNCTION(crypt);
#if HAVE_CRYPT
PHP_MINIT_FUNCTION(crypt);