00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 @define('HORDE_BASE', dirname(dirname(dirname(__FILE__))) . '/horde');
00014
00015 if (!is_dir(HORDE_BASE)) {
00016 trigger_error(sprintf('Directory not found: \'%s\'', HORDE_BASE), E_USER_ERROR);
00017 return 0;
00018 }
00019
00020 include_once HORDE_BASE . '/lib/Horde.php';
00021 include_once HORDE_BASE . '/lib/Secret.php';
00022
00031 class ADODB_Encrypt_Secret {
00034 function write($data, $key) {
00035 return Secret::write($key, $data);
00036 }
00037
00040 function read($data, $key) {
00041 return Secret::read($key, $data);
00042 }
00043
00044 }
00045
00046 return 1;
00047
00048 ?>