diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-09-29 22:35:47 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-09-29 22:35:47 +0000 |
commit | 3ae8d6700280297b485a897db86f710c1ca58251 (patch) | |
tree | 236d936e13a226d7500361e3ae301edaa7f042d0 /ext/standard/sha1.h | |
parent | 01898e0f3369cf7d83c1aff78db5789afb474593 (diff) | |
download | php-git-3ae8d6700280297b485a897db86f710c1ca58251.tar.gz |
Added missing API function declaration.
Diffstat (limited to 'ext/standard/sha1.h')
-rw-r--r-- | ext/standard/sha1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/sha1.h b/ext/standard/sha1.h index cd7908f8d3..c2398ca319 100644 --- a/ext/standard/sha1.h +++ b/ext/standard/sha1.h @@ -33,6 +33,7 @@ typedef struct { PHPAPI void PHP_SHA1Init(PHP_SHA1_CTX *); PHPAPI void PHP_SHA1Update(PHP_SHA1_CTX *, const unsigned char *, unsigned int); PHPAPI void PHP_SHA1Final(unsigned char[20], PHP_SHA1_CTX *); +PHPAPI void make_sha1_digest(char *sha1str, unsigned char *digest); PHP_FUNCTION(sha1); PHP_FUNCTION(sha1_file); |