public function encrypt(string $key, ?string $destination = null)
    {
        $clearTextContent = $this->read();
        $cipher = Cryptography::encrypt($clearTextContent, $key);
        if (!is_null($destination)) {