updated adodb package to work with php 7.1
[openemr.git] / vendor / adodb / adodb-php / session / adodb-encrypt-secret.php
blob96ae85494fd8a311c2adda44d113b543dcfe013d
1 <?php
3 /*
4 @version v5.20.9 21-Dec-2016
5 @copyright (c) 2000-2013 John Lim (jlim#natsoft.com). All rights reserved.
6 @copyright (c) 2014 Damien Regad, Mark Newnham and the ADOdb community
7 Contributed by Ross Smith (adodb@netebb.com).
8 Released under both BSD license and Lesser GPL library license.
9 Whenever there is any discrepancy between the two licenses,
10 the BSD license will take precedence.
11 Set tabs to 4 for best viewing.
15 @define('HORDE_BASE', dirname(dirname(dirname(__FILE__))) . '/horde');
17 if (!is_dir(HORDE_BASE)) {
18 trigger_error(sprintf('Directory not found: \'%s\'', HORDE_BASE), E_USER_ERROR);
19 return 0;
22 include_once HORDE_BASE . '/lib/Horde.php';
23 include_once HORDE_BASE . '/lib/Secret.php';
25 /**
27 NOTE: On Windows 2000 SP4 with PHP 4.3.1, MCrypt 2.4.x, and Apache 1.3.28,
28 the session didn't work properly.
30 This may be resolved with 4.3.3.
33 class ADODB_Encrypt_Secret {
34 /**
36 function write($data, $key) {
37 return Secret::write($key, $data);
40 /**
42 function read($data, $key) {
43 return Secret::read($key, $data);
48 return 1;