summaryrefslogtreecommitdiff
path: root/ext/standard/sha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/sha1.c')
-rw-r--r--ext/standard/sha1.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/ext/standard/sha1.c b/ext/standard/sha1.c
index 148b2dbb24..58bd91385c 100644
--- a/ext/standard/sha1.c
+++ b/ext/standard/sha1.c
@@ -1,7 +1,5 @@
/*
+----------------------------------------------------------------------+
- | PHP Version 7 |
- +----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
@@ -23,13 +21,12 @@
#include "sha1.h"
#include "md5.h"
-PHPAPI void make_sha1_digest(char *sha1str, unsigned char *digest)
+PHPAPI void make_sha1_digest(char *sha1str, const unsigned char *digest)
{
make_digest_ex(sha1str, digest, 20);
}
-/* {{{ proto string sha1(string str [, bool raw_output])
- Calculate the sha1 hash of a string */
+/* {{{ Calculate the sha1 hash of a string */
PHP_FUNCTION(sha1)
{
zend_string *arg;
@@ -58,8 +55,7 @@ PHP_FUNCTION(sha1)
/* }}} */
-/* {{{ proto string sha1_file(string filename [, bool raw_output])
- Calculate the sha1 hash of given filename */
+/* {{{ Calculate the sha1 hash of given filename */
PHP_FUNCTION(sha1_file)
{
char *arg;