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; } }