- GIỚI THIỆU TOOL: DUAL MESSENGER TOOLKIT
- [PHẦN MỀM] Giới thiệu Phần mềm Gmap Extractor
- Hướng Dẫn Đăng Nhập Nhiều Tài Khoản Zalo Trên Máy Tính Cực Kỳ Đơn Giản
- [C#] Chia sẻ source code phần mềm đếm số trang tập tin file PDF
- [C#] Cách Sử Dụng DeviceId trong C# Để Tạo Khóa Cho Ứng Dụng
- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
[C#] Mã hóa văn bản text sử dụng thuật toán AES Winform
Xin chào các bạn, bài viết hôm nay mình sẻ hướng dẫn các bạn mã hóa văn bản Text sử dụng thuật toán AES (Advanced Encryption Standard) trong winform.
[C#] AES cryptographic library for .NET Framework and .NET Core
Để sử dụng thuật toán này rất đơn giản, các bạn chỉ cần tải thư viện Rijndael256 AES từ Nuget Console về.
PM> Install-Package Rijndael256 -Version 3.2.0
Thư viện Rijndael256 AES hỗ trợ Keysizes: 128 bit, 192 bit và 256 bit.
Các bạn có thể sử dụng để mã hóa Text hoặc File.
Cú pháp sử dụng đơn giản:
string password = "sKzvYk#1Pn33!YN"; // Khóa để mã hóa
string plaintext = "Mã hóa thuật toán AES C# - laptrinhvb.net"; // Chuỗi cần mã hóa
// Mã hóa chuỗi
string ciphertext = Rijndael.Encrypt(plaintext, password, KeySize.Aes256);
// Giải mã chuỗi
plaintext = Rijndael.Decrypt(ciphertext, password, KeySize.Aes256);
Giao diện demo ứng dụng mã hóa AES C# Winform:
Source code sử dụng AES c#:
using Rijndael256;
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 algorithmAES
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnEncrypt_Click(object sender, EventArgs e)
{
var inputText = txt_input.Text;
var key = txt_key.Text;
string EncryptText = Rijndael.Encrypt(inputText, key, KeySize.Aes256);
txt_encryptText.Text = EncryptText;
}
private void btnDecrypt_Click(object sender, EventArgs e)
{
var inputText = txt_encryptText.Text;
string key =txt_key.Text;
string DecryptText = Rijndael.Decrypt(inputText, key, KeySize.Aes256);
txt_DecryptText.Text = DecryptText;
}
}
}
Thanks for watching!