public void Decrypt()
        {
            var aeadCipher = new XChaChaAeadCipher();

            aeadCipher.Decrypt(this.encryptedData, this.decryptOutputBuffer, this.key, this.nonce);
        }