- 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à giải mã Data Protection API trên winform
Xin chào các bạn, bài viết hôm nay mình sẻ tiếp tục hướng dẫn các bạn mã hóa và giải mã sử dụng Data Protection API trên Windows C#, Winform.
[C#] Encrypt - Decrypt DPAPI in Winform
DPAPI là mã hóa dựa trên tài khoản Windows: CurrentUser
hoặc Local Machine, được Microsoft giới thiệu từ năm 2000
Giao diện demo ứng dụng:
Full source code mã hóa và giải mã C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DPAPEncrypt
{
public partial class Form1 : Form
{
readonly byte[] entropy = { 1, 2, 3, 4, 5, 6 }; //the entropy
public Form1()
{
InitializeComponent();
}
private void btnEncrypt_Click(object sender, EventArgs e)
{
var txt = Encrypt(txtOriginText.Text);
txtEncryptText.Text = txt;
}
private void btnDecrypt_Click(object sender, EventArgs e)
{
var txt = Decrypt(txtEncryptText.Text);
txtDecryptText.Text = txt;
}
private string Encrypt(string text)
{
byte[] originalText = Encoding.Unicode.GetBytes(text);
byte[] encryptedText = ProtectedData.Protect(originalText, entropy, DataProtectionScope.CurrentUser);
return Convert.ToBase64String(encryptedText);
}
private string Decrypt(string text)
{
byte[] encryptedText = Convert.FromBase64String(text);
byte[] originalText = ProtectedData.Unprotect(encryptedText, entropy, DataProtectionScope.CurrentUser);
return Encoding.Unicode.GetString(originalText);
}
}
}
Các bạn có thể thay đổi:
DataProtectionScope.CurrentUser => DataProtectionScope.LocalMachine
Thanks for watching!