private void btn_CriptAndDescript_Click(object sender, EventArgs e)
        {
            if (!String.IsNullOrEmpty(txt_sendToBackend.Text))
            {
                if (ehCriptografia)
                {
                    result = algoritmoCriptografia.Criptografia(txt_sendToBackend.Text);

                    if (result.Length != txt_sendToBackend.Text.Length * 5 * 4 + 4)
                    {
                        result = algoritmoCriptografia.Criptografia(txt_sendToBackend.Text);
                    }
                }
                else
                {
                    result = algoritmoCriptografia.Descriptografia(txt_sendToBackend.Text);
                }

                txt_Result.Text = result;
                txt_sendToBackend.Clear();
            }
            else
            {
                MessageBox.Show("Necessário preencher algum texto!", "Erro ao criptografar", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }