uawdijnntqw1x1x1
IP : 216.73.216.15
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
defuse
/
php-encryption
/
src
/
DerivedKeys.php
/
/
<?php namespace Defuse\Crypto; /** * Class DerivedKeys * @package Defuse\Crypto */ final class DerivedKeys { /** * @var string */ private $akey = ''; /** * @var string */ private $ekey = ''; /** * Returns the authentication key. * @return string */ public function getAuthenticationKey() { return $this->akey; } /** * Returns the encryption key. * @return string */ public function getEncryptionKey() { return $this->ekey; } /** * Constructor for DerivedKeys. * * @param string $akey * @param string $ekey */ public function __construct($akey, $ekey) { $this->akey = $akey; $this->ekey = $ekey; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/defuse/php-encryption/src/DerivedKeys.php