setPrivateKeyPath('file://' . __DIR__ . '/private.key'); $this->setPublicKeyPath('file://' . __DIR__ . '/public.key'); } public function doEncrypt($unencryptedData) { return $this->encrypt($unencryptedData); } public function doDecrypt($encryptedData) { return $this->decrypt($encryptedData); } }