PICHU.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;
namespace Login
{
public partial class Login_Form : Form
{
public Login_Form()
{
InitializeComponent();
}
public MD5CryptoServiceProvider MD5 = new MD5CryptoServiceProvider();
public SHA1CryptoServiceProvider SHA1 = new SHA1CryptoServiceProvider();
public UTF8Encoding UTF8 = new UTF8Encoding();
string username, password, checkUsername, checkPassword;
private void Form1_Load(object sender, EventArgs e)
{
username = "F6605D694232FD462CC4147124DED870";
password = "A3B88082583ECCB947A2A77789589F26";
}
private void button1_Click(object sender, EventArgs e)
{
checkUsername = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash((UTF8.GetBytes(textBox1.Text)))))).Replace("-", "");
checkPassword = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash(UTF8.GetBytes(textBox2.Text))))).Replace("-", "");
if (username == checkUsername && password == checkPassword)
MessageBox.Show("Login Successful!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
else
MessageBox.Show("Incorrect Username or Password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;
namespace Login
{
public partial class Login_Form : Form
{
public Login_Form()
{
InitializeComponent();
}
public MD5CryptoServiceProvider MD5 = new MD5CryptoServiceProvider();
public SHA1CryptoServiceProvider SHA1 = new SHA1CryptoServiceProvider();
public UTF8Encoding UTF8 = new UTF8Encoding();
string username, password, checkUsername, checkPassword;
private void Form1_Load(object sender, EventArgs e)
{
username = "F6605D694232FD462CC4147124DED870";
password = "A3B88082583ECCB947A2A77789589F26";
}
private void button1_Click(object sender, EventArgs e)
{
checkUsername = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash((UTF8.GetBytes(textBox1.Text)))))).Replace("-", "");
checkPassword = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash(UTF8.GetBytes(textBox2.Text))))).Replace("-", "");
if (username == checkUsername && password == checkPassword)
MessageBox.Show("Login Successful!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
else
MessageBox.Show("Incorrect Username or Password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Linq
Imports System.Text
Imports System.Windows.Forms
Imports System.Security.Cryptography
Namespace Login
Public Class Form 1
Inherits Form
Public Sub New()
InitializeComponent()
End Sub
Public MD5 As New MD5CryptoServiceProvider()
Public SHA1 As New SHA1CryptoServiceProvider()
Public UTF8 As New UTF8Encoding()
Private username As String, password As String, checkUsername As String, checkPassword As String
Private Sub Form1_Load(sender As Object, e As EventArgs)
username = "F6605D694232FD462CC4147124DED870"
password = "A3B88082583ECCB947A2A77789589F26"
End Sub
Private Sub button1_Click(sender As Object, e As EventArgs)
checkUsername = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash((UTF8.GetBytes(textBox1.Text)))))).Replace("-", "")
checkPassword = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash(UTF8.GetBytes(textBox2.Text))))).Replace("-", "")
If username = checkUsername AndAlso password = checkPassword Then
MessageBox.Show("Login Successful!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
Else
MessageBox.Show("Incorrect Username or Password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
End Sub
End Class
End Namespace
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;
namespace Login
{
public partial class Login_Form : Form
{
public Login_Form()
{
InitializeComponent();
}
public MD5CryptoServiceProvider MD5 = new MD5CryptoServiceProvider();
public SHA1CryptoServiceProvider SHA1 = new SHA1CryptoServiceProvider();
public UTF8Encoding UTF8 = new UTF8Encoding();
string username, password, checkUsername, checkPassword;
private void Form1_Load(object sender, EventArgs e)
{
username = "F6605D694232FD462CC4147124DED870";
password = "A3B88082583ECCB947A2A77789589F26";
}
private void button1_Click(object sender, EventArgs e)
{
checkUsername = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash((UTF8.GetBytes(textBox1.Text)))))).Replace("-", "");
checkPassword = (BitConverter.ToString(MD5.ComputeHash(SHA1.ComputeHash(UTF8.GetBytes(textBox2.Text))))).Replace("-", "");
if (username == checkUsername && password == checkPassword)
MessageBox.Show("Login Successful!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
else
MessageBox.Show("Incorrect Username or Password", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
}
PICHU.
Copyright © 2026, NextGenUpdate.
All Rights Reserved.