1 /*
2 +----------------------------------------------------------------------+
3 | PHP Version 7 |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 1997-2017 The PHP Group |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Author: Sara Golemon <pollita@php.net> |
16 +----------------------------------------------------------------------+
17 */
18
19 /* $Id$ */
20
21 #ifndef PHP_HASH_H
22 #define PHP_HASH_H
23
24 #include "php.h"
25
26 #define PHP_HASH_EXTNAME "hash"
27 #define PHP_HASH_VERSION "1.0"
28 #define PHP_MHASH_VERSION "1.0"
29 #define PHP_HASH_RESNAME "Hash Context"
30
31 #define PHP_HASH_HMAC 0x0001
32
33 #define L64 INT64_C
34 #define php_hash_int32 int32_t
35 #define php_hash_uint32 uint32_t
36 #define php_hash_int64 int64_t
37 #define php_hash_uint64 uint64_t
38
39 typedef void (*php_hash_init_func_t)(void *context);
40 typedef void (*php_hash_update_func_t)(void *context, const unsigned char *buf, unsigned int count);
41 typedef void (*php_hash_final_func_t)(unsigned char *digest, void *context);
42 typedef int (*php_hash_copy_func_t)(const void *ops, void *orig_context, void *dest_context);
43
44 typedef struct _php_hash_ops {
45 php_hash_init_func_t hash_init;
46 php_hash_update_func_t hash_update;
47 php_hash_final_func_t hash_final;
48 php_hash_copy_func_t hash_copy;
49
50 int digest_size;
51 int block_size;
52 int context_size;
53 } php_hash_ops;
54
55 typedef struct _php_hash_data {
56 const php_hash_ops *ops;
57 void *context;
58
59 zend_long options;
60 unsigned char *key;
61 } php_hash_data;
62
63 extern const php_hash_ops php_hash_md2_ops;
64 extern const php_hash_ops php_hash_md4_ops;
65 extern const php_hash_ops php_hash_md5_ops;
66 extern const php_hash_ops php_hash_sha1_ops;
67 extern const php_hash_ops php_hash_sha224_ops;
68 extern const php_hash_ops php_hash_sha256_ops;
69 extern const php_hash_ops php_hash_sha384_ops;
70 extern const php_hash_ops php_hash_sha512_ops;
71 extern const php_hash_ops php_hash_ripemd128_ops;
72 extern const php_hash_ops php_hash_ripemd160_ops;
73 extern const php_hash_ops php_hash_ripemd256_ops;
74 extern const php_hash_ops php_hash_ripemd320_ops;
75 extern const php_hash_ops php_hash_whirlpool_ops;
76 extern const php_hash_ops php_hash_3tiger128_ops;
77 extern const php_hash_ops php_hash_3tiger160_ops;
78 extern const php_hash_ops php_hash_3tiger192_ops;
79 extern const php_hash_ops php_hash_4tiger128_ops;
80 extern const php_hash_ops php_hash_4tiger160_ops;
81 extern const php_hash_ops php_hash_4tiger192_ops;
82 extern const php_hash_ops php_hash_snefru_ops;
83 extern const php_hash_ops php_hash_gost_ops;
84 extern const php_hash_ops php_hash_gost_crypto_ops;
85 extern const php_hash_ops php_hash_adler32_ops;
86 extern const php_hash_ops php_hash_crc32_ops;
87 extern const php_hash_ops php_hash_crc32b_ops;
88 extern const php_hash_ops php_hash_fnv132_ops;
89 extern const php_hash_ops php_hash_fnv1a32_ops;
90 extern const php_hash_ops php_hash_fnv164_ops;
91 extern const php_hash_ops php_hash_fnv1a64_ops;
92 extern const php_hash_ops php_hash_joaat_ops;
93
94 #define PHP_HASH_HAVAL_OPS(p,b) extern const php_hash_ops php_hash_##p##haval##b##_ops;
95
96 PHP_HASH_HAVAL_OPS(3,128)
97 PHP_HASH_HAVAL_OPS(3,160)
98 PHP_HASH_HAVAL_OPS(3,192)
99 PHP_HASH_HAVAL_OPS(3,224)
100 PHP_HASH_HAVAL_OPS(3,256)
101
102 PHP_HASH_HAVAL_OPS(4,128)
103 PHP_HASH_HAVAL_OPS(4,160)
104 PHP_HASH_HAVAL_OPS(4,192)
105 PHP_HASH_HAVAL_OPS(4,224)
106 PHP_HASH_HAVAL_OPS(4,256)
107
108 PHP_HASH_HAVAL_OPS(5,128)
109 PHP_HASH_HAVAL_OPS(5,160)
110 PHP_HASH_HAVAL_OPS(5,192)
111 PHP_HASH_HAVAL_OPS(5,224)
112 PHP_HASH_HAVAL_OPS(5,256)
113
114 extern zend_module_entry hash_module_entry;
115 #define phpext_hash_ptr &hash_module_entry
116
117 #ifdef PHP_WIN32
118 # define PHP_HASH_API __declspec(dllexport)
119 #elif defined(__GNUC__) && __GNUC__ >= 4
120 # define PHP_HASH_API __attribute__ ((visibility("default")))
121 #else
122 # define PHP_HASH_API
123 #endif
124
125 #ifdef ZTS
126 #include "TSRM.h"
127 #endif
128
129 PHP_FUNCTION(hash);
130 PHP_FUNCTION(hash_file);
131 PHP_FUNCTION(hash_hmac);
132 PHP_FUNCTION(hash_hmac_file);
133 PHP_FUNCTION(hash_init);
134 PHP_FUNCTION(hash_update);
135 PHP_FUNCTION(hash_update_stream);
136 PHP_FUNCTION(hash_update_file);
137 PHP_FUNCTION(hash_final);
138 PHP_FUNCTION(hash_algos);
139 PHP_FUNCTION(hash_pbkdf2);
140 PHP_FUNCTION(hash_equals);
141
142 PHP_HASH_API const php_hash_ops *php_hash_fetch_ops(const char *algo, size_t algo_len);
143 PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops);
144 PHP_HASH_API int php_hash_copy(const void *ops, void *orig_context, void *dest_context);
145
php_hash_bin2hex(char * out,const unsigned char * in,int in_len)146 static inline void php_hash_bin2hex(char *out, const unsigned char *in, int in_len)
147 {
148 static const char hexits[17] = "0123456789abcdef";
149 int i;
150
151 for(i = 0; i < in_len; i++) {
152 out[i * 2] = hexits[in[i] >> 4];
153 out[(i * 2) + 1] = hexits[in[i] & 0x0F];
154 }
155 }
156
157 #endif /* PHP_HASH_H */
158
159
160 /*
161 * Local variables:
162 * tab-width: 4
163 * c-basic-offset: 4
164 * End:
165 * vim600: noet sw=4 ts=4 fdm=marker
166 * vim<600: noet sw=4 ts=4
167 */
168