Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * hash extension Function dictionary for PHP_CompatInfo 1.9.0b2 or better
4
 *
5
 * PHP versions 4 and 5
6
 *
7
 * @category PHP
8
 * @package  PHP_CompatInfo
9
 * @author   Davey Shafik <davey@php.net>
10
 * @author   Laurent Laville <pear@laurent-laville.org>
11
 * @license  http://www.opensource.org/licenses/bsd-license.php  BSD
12
 * @version  CVS: $Id: hash_func_array.php,v 1.2 2008/12/29 09:40:50 farell Exp $
13
 * @link     http://pear.php.net/package/PHP_CompatInfo
14
 * @since    version 1.9.0b2 (2008-12-19)
15
 */
16
 
17
$GLOBALS['_PHP_COMPATINFO_FUNC_HASH'] = array (
18
  'hash' =>
19
  array (
20
    'init' => '5.1.2',
21
    'ext' => 'hash',
22
    'pecl' => false,
23
  ),
24
  'hash_algos' =>
25
  array (
26
    'init' => '5.1.2',
27
    'ext' => 'hash',
28
    'pecl' => false,
29
  ),
30
  'hash_file' =>
31
  array (
32
    'init' => '5.1.2',
33
    'ext' => 'hash',
34
    'pecl' => false,
35
  ),
36
  'hash_final' =>
37
  array (
38
    'init' => '5.1.2',
39
    'ext' => 'hash',
40
    'pecl' => false,
41
  ),
42
  'hash_hmac' =>
43
  array (
44
    'init' => '5.1.2',
45
    'ext' => 'hash',
46
    'pecl' => false,
47
  ),
48
  'hash_hmac_file' =>
49
  array (
50
    'init' => '5.1.2',
51
    'ext' => 'hash',
52
    'pecl' => false,
53
  ),
54
  'hash_init' =>
55
  array (
56
    'init' => '5.1.2',
57
    'ext' => 'hash',
58
    'pecl' => false,
59
  ),
60
  'hash_update' =>
61
  array (
62
    'init' => '5.1.2',
63
    'ext' => 'hash',
64
    'pecl' => false,
65
  ),
66
  'hash_update_file' =>
67
  array (
68
    'init' => '5.1.2',
69
    'ext' => 'hash',
70
    'pecl' => false,
71
  ),
72
  'hash_update_stream' =>
73
  array (
74
    'init' => '5.1.2',
75
    'ext' => 'hash',
76
    'pecl' => false,
77
  ),
78
  'md5' =>
79
  array (
80
    'init' => '4.0.0',
81
    'ext' => 'hash',
82
    'pecl' => false,
83
  ),
84
  'md5_file' =>
85
  array (
86
    'init' => '4.2.0',
87
    'ext' => 'hash',
88
    'pecl' => false,
89
  ),
90
  'sha1' =>
91
  array (
92
    'init' => '4.3.0',
93
    'ext' => 'hash',
94
    'pecl' => false,
95
  ),
96
  'sha1_file' =>
97
  array (
98
    'init' => '4.3.0',
99
    'ext' => 'hash',
100
    'pecl' => false,
101
  ),
102
);
103
?>