-
Notifications
You must be signed in to change notification settings - Fork 7
/
hash.php
350 lines (328 loc) · 12.4 KB
/
hash.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<?php
// Start of hash v.1.0
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Generate a hash value (message digest)
* @link http://php.net/manual/en/function.hash.php
* @param string $algo <p>
* Name of selected hashing algorithm (e.g. "md5", "sha256", "haval160,4", etc..)
* </p>
* @param string $data <p>
* Message to be hashed.
* </p>
* @param bool $raw_output [optional] <p>
* When set to <b>TRUE</b>, outputs raw binary data.
* <b>FALSE</b> outputs lowercase hexits.
* </p>
* @return string a string containing the calculated message digest as lowercase hexits
* unless <i>raw_output</i> is set to true in which case the raw
* binary representation of the message digest is returned.
*/
function hash(string $algo, string $data, bool $raw_output = false): string {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Generate a hash value using the contents of a given file
* @link http://php.net/manual/en/function.hash-file.php
* @param string $algo <p>
* Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..)
* </p>
* @param string $filename <p>
* URL describing location of file to be hashed; Supports fopen wrappers.
* </p>
* @param bool $raw_output [optional] <p>
* When set to <b>TRUE</b>, outputs raw binary data.
* <b>FALSE</b> outputs lowercase hexits.
* </p>
* @return string a string containing the calculated message digest as lowercase hexits
* unless <i>raw_output</i> is set to true in which case the raw
* binary representation of the message digest is returned.
*/
function hash_file(string $algo, string $filename, bool $raw_output = false): string {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Generate a keyed hash value using the HMAC method
* @link http://php.net/manual/en/function.hash-hmac.php
* @param string $algo <p>
* Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..) See <b>hash_algos</b> for a list of supported algorithms.
* </p>
* @param string $data <p>
* Message to be hashed.
* </p>
* @param string $key <p>
* Shared secret key used for generating the HMAC variant of the message digest.
* </p>
* @param bool $raw_output [optional] <p>
* When set to <b>TRUE</b>, outputs raw binary data.
* <b>FALSE</b> outputs lowercase hexits.
* </p>
* @return string a string containing the calculated message digest as lowercase hexits
* unless <i>raw_output</i> is set to true in which case the raw
* binary representation of the message digest is returned.
* Returns <b>FALSE</b> when <i>algo</i> is unknown.
*/
function hash_hmac(string $algo, string $data, string $key, bool $raw_output = false): string {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Generate a keyed hash value using the HMAC method and the contents of a given file
* @link http://php.net/manual/en/function.hash-hmac-file.php
* @param string $algo <p>
* Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..) See <b>hash_algos</b> for a list of supported algorithms.
* </p>
* @param string $filename <p>
* URL describing location of file to be hashed; Supports fopen wrappers.
* </p>
* @param string $key <p>
* Shared secret key used for generating the HMAC variant of the message digest.
* </p>
* @param bool $raw_output [optional] <p>
* When set to <b>TRUE</b>, outputs raw binary data.
* <b>FALSE</b> outputs lowercase hexits.
* </p>
* @return string a string containing the calculated message digest as lowercase hexits
* unless <i>raw_output</i> is set to true in which case the raw
* binary representation of the message digest is returned.
*/
function hash_hmac_file(string $algo, string $filename, string $key, bool $raw_output = false): string {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Initialize an incremental hashing context
* @link http://php.net/manual/en/function.hash-init.php
* @param string $algo <p>
* Name of selected hashing algorithm (i.e. "md5", "sha256", "haval160,4", etc..). For a list of supported algorithms see <b>hash_algos</b>.
* </p>
* @param int $options [optional] <p>
* Optional settings for hash generation, currently supports only one option:
* <b>HASH_HMAC</b>. When specified, the <i>key</i>
* must be specified.
* </p>
* @param string $key [optional] <p>
* When <b>HASH_HMAC</b> is specified for <i>options</i>,
* a shared secret key to be used with the HMAC hashing method must be supplied in this
* parameter.
* </p>
* @return resource a Hashing Context resource for use with <b>hash_update</b>,
* <b>hash_update_stream</b>, <b>hash_update_file</b>,
* and <b>hash_final</b>.
*/
function hash_init(string $algo, int $options = 0, string $key = null) {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Pump data into an active hashing context
* @link http://php.net/manual/en/function.hash-update.php
* @param resource $context <p>
* Hashing context returned by <b>hash_init</b>.
* </p>
* @param string $data <p>
* Message to be included in the hash digest.
* </p>
* @return bool <b>TRUE</b>.
*/
function hash_update($context, string $data): bool {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Pump data into an active hashing context from an open stream
* @link http://php.net/manual/en/function.hash-update-stream.php
* @param resource $context <p>
* Hashing context returned by <b>hash_init</b>.
* </p>
* @param resource $handle <p>
* Open file handle as returned by any stream creation function.
* </p>
* @param int $length [optional] <p>
* Maximum number of characters to copy from <i>handle</i>
* into the hashing context.
* </p>
* @return int Actual number of bytes added to the hashing context from <i>handle</i>.
*/
function hash_update_stream($context, $handle, int $length = -1): int {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Pump data into an active hashing context from a file
* @link http://php.net/manual/en/function.hash-update-file.php
* @param resource $hcontext <p>
* Hashing context returned by <b>hash_init</b>.
* </p>
* @param string $filename <p>
* URL describing location of file to be hashed; Supports fopen wrappers.
* </p>
* @param resource $scontext [optional] <p>
* Stream context as returned by <b>stream_context_create</b>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function hash_update_file($hcontext, string $filename, $scontext = null): bool {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Finalize an incremental hash and return resulting digest
* @link http://php.net/manual/en/function.hash-final.php
* @param resource $context <p>
* Hashing context returned by <b>hash_init</b>.
* </p>
* @param bool $raw_output [optional] <p>
* When set to <b>TRUE</b>, outputs raw binary data.
* <b>FALSE</b> outputs lowercase hexits.
* </p>
* @return string a string containing the calculated message digest as lowercase hexits
* unless <i>raw_output</i> is set to true in which case the raw
* binary representation of the message digest is returned.
*/
function hash_final($context, bool $raw_output = false): string {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Copy hashing context
* @link http://php.net/manual/en/function.hash-copy.php
* @param resource $context <p>
* Hashing context returned by <b>hash_init</b>.
* </p>
* @return resource a copy of Hashing Context resource.
*/
function hash_copy($context) {}
/**
* (PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1)<br/>
* Return a list of registered hashing algorithms
* @link http://php.net/manual/en/function.hash-algos.php
* @return array a numerically indexed array containing the list of supported
* hashing algorithms.
*/
function hash_algos(): array {}
/**
* (PHP 5 >= 5.5.0, PHP 7)<br/>
* Generate a PBKDF2 key derivation of a supplied password
* @link http://php.net/manual/en/function.hash-pbkdf2.php
* @param $algo
* @param $password
* @param $salt
* @param $iterations
* @param $length [optional]
* @param $raw_output [optional]
* @return mixed a string containing the derived key as lowercase hexits unless
* <i>raw_output</i> is set to <b>TRUE</b> in which case the raw
* binary representation of the derived key is returned.
*/
function hash_pbkdf2($algo, $password, $salt, $iterations, $length, $raw_output) {}
/**
* (PHP 5 >= 5.6.0, PHP 7)<br/>
* Timing attack safe string comparison
* @link http://php.net/manual/en/function.hash-equals.php
* @param string $known_string <p>
* The string of known length to compare against
* </p>
* @param string $user_string <p>
* The user-supplied string
* </p>
* @return bool <b>TRUE</b> when the two strings are equal, <b>FALSE</b> otherwise.
*/
function hash_equals(string $known_string, string $user_string): bool {}
/**
* (PHP 4 >= 4.0.4, PHP 5, PHP 7)<br/>
* Generates a key
* @link http://php.net/manual/en/function.mhash-keygen-s2k.php
* @param int $hash <p>
* The hash ID used to create the key.
* One of the <b>MHASH_hashname</b> constants.
* </p>
* @param string $password <p>
* An user supplied password.
* </p>
* @param string $salt <p>
* Must be different and random enough for every key you generate in
* order to create different keys. Because <i>salt</i>
* must be known when you check the keys, it is a good idea to append
* the key to it. Salt has a fixed length of 8 bytes and will be padded
* with zeros if you supply less bytes.
* </p>
* @param int $bytes <p>
* The key length, in bytes.
* </p>
* @return string the generated key as a string, or <b>FALSE</b> on error.
*/
function mhash_keygen_s2k(int $hash, string $password, string $salt, int $bytes): string {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Gets the block size of the specified hash
* @link http://php.net/manual/en/function.mhash-get-block-size.php
* @param int $hash <p>
* The hash ID. One of the <b>MHASH_hashname</b> constants.
* </p>
* @return int the size in bytes or <b>FALSE</b>, if the <i>hash</i>
* does not exist.
*/
function mhash_get_block_size(int $hash): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Gets the name of the specified hash
* @link http://php.net/manual/en/function.mhash-get-hash-name.php
* @param int $hash <p>
* The hash ID. One of the <b>MHASH_hashname</b> constants.
* </p>
* @return string the name of the hash or <b>FALSE</b>, if the hash does not exist.
*/
function mhash_get_hash_name(int $hash): string {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Gets the highest available hash ID
* @link http://php.net/manual/en/function.mhash-count.php
* @return int the highest available hash ID. Hashes are numbered from 0 to this
* hash ID.
*/
function mhash_count(): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Computes hash
* @link http://php.net/manual/en/function.mhash.php
* @param int $hash <p>
* The hash ID. One of the <b>MHASH_hashname</b> constants.
* </p>
* @param string $data <p>
* The user input, as a string.
* </p>
* @param string $key [optional] <p>
* If specified, the function will return the resulting HMAC instead.
* HMAC is keyed hashing for message authentication, or simply a message
* digest that depends on the specified key. Not all algorithms
* supported in mhash can be used in HMAC mode.
* </p>
* @return string the resulting hash (also called digest) or HMAC as a string, or
* <b>FALSE</b> on error.
*/
function mhash(int $hash, string $data, string $key = null): string {}
/**
* Optional flag for <b>hash_init</b>.
* Indicates that the HMAC digest-keying algorithm should be
* applied to the current hashing context.
* @link http://php.net/manual/en/hash.constants.php
*/
define ('HASH_HMAC', 1);
define ('MHASH_CRC32', 0);
define ('MHASH_MD5', 1);
define ('MHASH_SHA1', 2);
define ('MHASH_HAVAL256', 3);
define ('MHASH_RIPEMD160', 5);
define ('MHASH_TIGER', 7);
define ('MHASH_GOST', 8);
define ('MHASH_CRC32B', 9);
define ('MHASH_HAVAL224', 10);
define ('MHASH_HAVAL192', 11);
define ('MHASH_HAVAL160', 12);
define ('MHASH_HAVAL128', 13);
define ('MHASH_TIGER128', 14);
define ('MHASH_TIGER160', 15);
define ('MHASH_MD4', 16);
define ('MHASH_SHA256', 17);
define ('MHASH_ADLER32', 18);
define ('MHASH_SHA224', 19);
define ('MHASH_SHA512', 20);
define ('MHASH_SHA384', 21);
define ('MHASH_WHIRLPOOL', 22);
define ('MHASH_RIPEMD128', 23);
define ('MHASH_RIPEMD256', 24);
define ('MHASH_RIPEMD320', 25);
define ('MHASH_SNEFRU256', 27);
define ('MHASH_MD2', 28);
define ('MHASH_FNV132', 29);
define ('MHASH_FNV1A32', 30);
define ('MHASH_FNV164', 31);
define ('MHASH_FNV1A64', 32);
define ('MHASH_JOAAT', 33);
// End of hash v.1.0
?>