1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
| namespace form1
{
public partial class Form2 : Form
{
MD5CryptoServiceProvider check = new MD5CryptoServiceProvider();
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
txtBoxUserName.Focus();
this.txtBoxUserName.Validating += new
System.ComponentModel.CancelEventHandler(this.txtBoxUserName_Validating);
this.txtBoxMDP.Validating += new
System.ComponentModel.CancelEventHandler(this.txtBoxMDP_Validating);
this.txtBoxURL.Validating += new
System.ComponentModel.CancelEventHandler(this.txtBoxURL_Validating);
}
private void button2_Click(object sender, EventArgs e) // bouton valider
{
string errorMessage = "";
if ((txtBoxMDP.Text == "") && (txtBoxURL.Text == "") && (txtBoxUserName.Text == ""))
errorMessage ="aucun champ n'a été renseigné !!!" + "\n" + "Recommencer";
else
{
if (!UrlValide(txtBoxURL.Text))
errorMessage += "Format Url invalide !"+ Environment.NewLine;
if (txtBoxMDP.Text == "")
errorMessage += "Veuillez saisir le mot de passe." + Environment.NewLine;
if (txtBoxUserName.Text == "")
errorMessage += "Veuillez saisir le nom d'utilisateur."+ Environment.NewLine;
}
if (!string.IsNullOrEmpty(errorMessage))
{
MessageBox.Show(errorMessage);
}
else
{
string valide = "";
valide += "Nom Utilisateur : " + txtBoxUserName.Text + "\n" + "Mot de Passe : " + toMD5(txtBoxMDP.Text) +
"\n" + " URL : " + txtBoxURL.Text;
MessageBox.Show(valide, "validation effectué");
this.Close();
}
WriteValue(toMD5(txtBoxMDP.Text), txtBoxUserName.Text, txtBoxURL.Text);
txtBoxMDP.Clear();
txtBoxUserName.Clear();
txtBoxURL.Clear();
txtBoxUserName.Focus();
}
private void button1_Click(object sender, EventArgs e) // bouton effacer
{
txtBoxMDP.Clear();
txtBoxUserName.Clear();
txtBoxURL.Clear();
txtBoxUserName.Focus();
}
private bool UrlValide(string UrlVal)
{
bool UrlV;
UrlV = Regex.IsMatch(UrlVal, @"^(http://|https://){0,1}[A-Za-z0-9][A-Za-z0-9\-\.]+[A-Za-z0-9]\.[A-Za-z]{2,}[\43-\176]*$");
return UrlV;
}
private void txtBoxUserName_Validating(object sender, System.ComponentModel.CancelEventArgs e)
{
if (txtBoxUserName.TextLength == 0)
{
errorProvider1.SetError(txtBoxUserName, "Mettre votre pseudo");
e.Cancel = true;
}
else
{
errorProvider1.SetError(txtBoxUserName, null);
}
button1.CausesValidation = false;
}
private void txtBoxMDP_Validating(object sender, System.ComponentModel.CancelEventArgs e)
{
if (txtBoxMDP.TextLength == 0)
{
errorProvider1.SetError(txtBoxMDP, "Mettre un mot de passe");
e.Cancel = true;
}
else
{
errorProvider1.SetError(txtBoxMDP, null);
}
button1.CausesValidation = false;
}
private void txtBoxURL_Validating(object sender, System.ComponentModel.CancelEventArgs e)
{
if (txtBoxURL.TextLength == 0)
{
errorProvider1.SetError(txtBoxURL, "Mettre l'URL");
e.Cancel = true;
}
else
{
errorProvider1.SetError(txtBoxURL, null);
}
button1.CausesValidation = false;
}
// cryptage du mot de passe
public string toMD5(string strText)
{
Byte[] buffer;
buffer = System.Text.Encoding.Default.GetBytes(strText);
try
{
MD5CryptoServiceProvider check = new MD5CryptoServiceProvider();
Byte[] somme;
somme = check.ComputeHash(buffer);
string ret = "";
foreach (byte a in somme)
{
if (a < 16) ret += "0" + a.ToString("X");
else ret += a.ToString("X");
}
return ret;
}
catch (Exception ex)
{
throw ex;
}
}
// Fonction qui écrit les données d'authentification dans la base de regsitre windows
private void WriteValue(string MotDePasse, string UserName, string URL)
{
RegistryKey Nkey = Registry.CurrentUser;
try
{
RegistryKey valKey =
Nkey.OpenSubKey("Software\\Ameno\\MyKey", true);
if(valKey == null)
{
Nkey.CreateSubKey("Software\\Ameno\\MyKey");
}
valKey.SetValue("Password", toMD5(txtBoxMDP.Text));
valKey.SetValue("UserName", txtBoxUserName.Text);
valKey.SetValue("URL", txtBoxURL.Text);
}
catch(Exception er)
{
MessageBox.Show(er.Message, "Amenothes", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
finally
{
Nkey.Close();
}
} |