Esempio n. 1
0
 private void saveBtn_Click(object sender, EventArgs e)
 {
     BiblioUpTik.Properties.Settings.Default.Username = this.usernameBox.Text;
     BiblioUpTik.Properties.Settings.Default.Password = Protect.EncryptString(Protect.ToSecureString(this.passwordBox.Text));
     BiblioUpTik.Properties.Settings.Default.Delay    = Decimal.ToInt32(this.delayBox.Value);
     BiblioUpTik.Properties.Settings.Default.Secure   = this.secureBox.Checked;
     BiblioUpTik.Properties.Settings.Default.Save();
     int num = (int)MessageBox.Show("Login Information Saved!");
 }
Esempio n. 2
0
 public static SecureString DecryptString(string encryptedData)
 {
     try
     {
         return(Protect.ToSecureString(Encoding.Unicode.GetString(ProtectedData.Unprotect(Convert.FromBase64String(encryptedData), Protect.entropy, DataProtectionScope.CurrentUser))));
     }
     catch
     {
         return(new SecureString());
     }
 }
Esempio n. 3
0
 private void saveBtn1_Click(object sender, EventArgs e)
 {
     BiblioUpTik.Properties.Settings.Default.Template       = this.templateBox.Text;
     BiblioUpTik.Properties.Settings.Default.OnRun          = this.addBox.Checked;
     BiblioUpTik.Properties.Settings.Default.GetCover       = this.coverBox.Checked;
     BiblioUpTik.Properties.Settings.Default.GetPages       = this.pagesBox.Checked;
     BiblioUpTik.Properties.Settings.Default.GetPublisher   = this.publisherBox.Checked;
     BiblioUpTik.Properties.Settings.Default.GetDescription = this.descriptionBox.Checked;
     BiblioUpTik.Properties.Settings.Default.Width          = (int)this.widthBox.Value;
     BiblioUpTik.Properties.Settings.Default.Height         = (int)this.heightBox.Value;
     BiblioUpTik.Properties.Settings.Default.ShowCover      = this.showCoverBox.Checked;
     BiblioUpTik.Properties.Settings.Default.AnnounceURL    = Protect.EncryptString(Protect.ToSecureString(this.announceBox.Text));
     BiblioUpTik.Properties.Settings.Default.Save();
     int num = (int)MessageBox.Show("Settings Saved!");
 }