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