private void button10_Click(object sender, RoutedEventArgs e) //AES kriptiraj
        {
            try
            {
                if (!String.IsNullOrEmpty(textBox8.Text))
                {
                    if (textBox8.Text == "128" || textBox8.Text == "192" || textBox8.Text == "256")
                    {
                        AES aes = new AES(Convert.ToInt32(textBox8.Text));

                        if (!String.IsNullOrEmpty(textBox4.Text))
                        {
                            MessageBox.Show("Kriptiram...");
                            aes.AES_Enkripcija(textBox4.Text);
                            GC.Collect();
                            MessageBox.Show("Izbrana datoteka kriptirana z AES algoritmom!");
                        }
                        else
                        {
                            MessageBox.Show("Datoteka ni bila izbrana!");
                        }
                    }
                    else
                    {
                        MessageBox.Show("Vnesena velikost ključa ne ustreza!");
                    }
                }
                else
                {
                    MessageBox.Show("Določite velikost ključa!");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }