Example #1
0
        // ################################# Генерирование IV ################################
        private void IVCheckBox_Checked(object sender, RoutedEventArgs e)
        {
            Cryptobox IVRandObject = new Cryptobox();

            IVInputTextTextbox.Text = IVRandObject.Random(128);
        }
Example #2
0
 // ################################# Генерирование ключа ################################
 private void KeyCheckButton_Checked(object sender, RoutedEventArgs e)
 {
     Cryptobox KeyRandObject = new Cryptobox();
     KeyInputTextTextbox.Text = KeyRandObject.Random(UInt32.Parse("128"));//KeySizeCombobox.SelectionBoxItem.ToString()));
 }
Example #3
0
        // ################################# Генерирование ключа ################################
        private void KeyCheckButton_Checked(object sender, RoutedEventArgs e)
        {
            Cryptobox KeyRandObject = new Cryptobox();

            KeyInputTextTextbox.Text = KeyRandObject.Random(UInt32.Parse("128"));//KeySizeCombobox.SelectionBoxItem.ToString()));
        }
Example #4
0
 // ################################# Генерирование IV ################################
 private void IVCheckBox_Checked(object sender, RoutedEventArgs e)
 {
     Cryptobox IVRandObject = new Cryptobox();
     IVInputTextTextbox.Text = IVRandObject.Random(128);
 }