- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathphp_hash_adler32.h
30 lines (26 loc) · 1.53 KB
/
php_hash_adler32.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
+----------------------------------------------------------------------+
| Copyright (c) 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 |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Michael Wallner <mike@php.net> |
+----------------------------------------------------------------------+
*/
#ifndefPHP_HASH_ADLER32_H
#definePHP_HASH_ADLER32_H
typedefstruct {
uint32_tstate;
} PHP_ADLER32_CTX;
#definePHP_ADLER32_SPEC "l."
PHP_HASH_APIvoidPHP_ADLER32Init(PHP_ADLER32_CTX*context, ZEND_ATTRIBUTE_UNUSEDHashTable*args);
PHP_HASH_APIvoidPHP_ADLER32Update(PHP_ADLER32_CTX*context, constunsigned char*input, size_tlen);
PHP_HASH_APIvoidPHP_ADLER32Final(unsigned chardigest[4], PHP_ADLER32_CTX*context);
PHP_HASH_APIzend_resultPHP_ADLER32Copy(constphp_hash_ops*ops, constPHP_ADLER32_CTX*orig_context, PHP_ADLER32_CTX*copy_context);
#endif