Generador de Contraseñas - I




using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace GeneradorContraseñas
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        int longitud;

        private void button1_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        static string generarpassword(int longitud)
        {
            const string caracteres = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!$%&/()=?¿*";
            StringBuilder respuesta = new StringBuilder();
            Random aleatorio = new Random();
            while (0 < longitud--)
            {
                respuesta.Append(caracteres[aleatorio.Next(caracteres.Length)]);
            }
            return respuesta.ToString();
        }



        private void button2_Click(object sender, EventArgs e)
        {
            string contraseña = generarpassword(longitud);
            textBox1.Text = contraseña;
        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {
            longitud = int.Parse(textBox2.Text);
        }
    }
}

No hay comentarios:

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.