⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.89
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Core
/
Edit File: Secret.php
<?php /** * Copyright 2012-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @category Horde * @copyright 2012-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Core */ /** * Wrap the base class in order to use a single secret key when authenticated * to Horde, to reduce complexity and minimze cookie size. * * Horde_Secret should only be used to encrypt data within the current * session. To encrypt data generally, directly use an encryption library * since how data is stored in a session may change without warning between * versions. * * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @copyright 2012-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL * @package Core */ class Horde_Core_Secret extends Horde_Secret { const HORDE_KEYNAME = 'horde_secret'; /** */ public function setKey($keyname = self::DEFAULT_KEY) { return parent::setKey(self::HORDE_KEYNAME); } /** */ public function getKey($keyname = self::DEFAULT_KEY) { return parent::getKey(self::HORDE_KEYNAME); } /** */ public function clearKey($keyname = self::DEFAULT_KEY) { return parent::clearKey(self::HORDE_KEYNAME); } }
Simpan