implemented encrypted NSA archives.

This commit is contained in:
morkt
2015-09-01 03:38:04 +04:00
parent 47b3d6adf0
commit aa225cc967
15 changed files with 638 additions and 265 deletions

View File

@@ -0,0 +1,33 @@
using System.Collections.Generic;
using System.Windows.Controls;
using GameRes.Formats.Properties;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for NSAWidget.xaml
/// </summary>
public partial class WidgetNSA : Grid
{
public WidgetNSA ()
{
InitializeComponent ();
this.Password.Text = Settings.Default.NSAPassword;
if (null != this.Title.SelectedItem)
{
var selected = (KeyValuePair<string, string>)this.Title.SelectedItem;
if (Settings.Default.NSAPassword != selected.Value)
this.Title.SelectedIndex = -1;
}
}
private void Title_SelectionChanged (object sender, SelectionChangedEventArgs e)
{
if (null != this.Title.SelectedItem && null != this.Password)
{
var selected = (KeyValuePair<string, string>)this.Title.SelectedItem;
this.Password.Text = selected.Value;
}
}
}
}