[转][C#]加密解密类
{ public static class Crypter { private static string FDefaultPassword = typeof(Crypter).FullName; public static string DefaultPassword { set { Crypter.FDefaultPassword = value; } } public static Stream Encrypt(Stream dest, string password) { ICryptoTransform transform = null; using (PasswordDeriveBytes passwordDeriveBytes = new PasswordDeriveBytes(password, Encoding.UTF8.GetBytes("Salt"))) { transform = new RijndaelManaged { Padding = PaddingMode.ISO10126 }.CreateEncryptor(passwordDeriveBytes.GetBytes(16), passwordDeriveBytes.GetBytes(16)); } dest.Write(new byte[] { 114, 105, 106 }, 0, 3); return new CryptoStream(dest, transform, CryptoStreamMode.Write); } public static Stream Decrypt(Stream source, string password) { ICryptoTransform transform = null; using (PasswordDeriveBytes passwordDeriveBytes = new PasswordDeriveBytes(password, Encoding.UTF8.GetBytes("Salt"))) { transform = new RijndaelManaged { Padding = PaddingMode.ISO10126 }.CreateDecryptor(passwordDeriveBytes.GetBytes(16), passwordDeriveBytes.GetBytes(16)); } int arg_5C_0 = source.ReadByte(); int num = source.ReadByte(); int num2 = source.ReadByte(); if (arg_5C_0 == 114 && num == 105 && num2 == 106) { return new CryptoStream(source, transform, CryptoStreamMode.Read); } source.Position -= 3L; return null; } public static bool IsStreamEncrypted(Stream stream) { int arg_25_0 = stream.ReadByte(); int num = stream.ReadByte(); int num2 = stream.ReadByte(); stream.Position -= 3L; return arg_25_0 == 114 && num == 105 && num2 == 106; } public static string EncryptString(string data) { return Crypter.EncryptString(data, Crypter.FDefaultPassword); } public static string EncryptString(string data, string password) { if (string.IsNullOrEmpty(data) || string.IsNullOrEmpty(password)) { return data; } string result; using (MemoryStream memoryStream = new MemoryStream()) { using (Stream stream = Crypter.Encrypt(memoryStream, password)) { byte[] bytes = Encoding.UTF8.GetBytes(data); stream.Write(bytes, 0, bytes.Length); } result = "rij" + Convert.ToBase64String(memoryStream.ToArray()); } return result; } public static string DecryptString(string data) { return Crypter.DecryptString(data, Crypter.FDefaultPassword); } public static string DecryptString(string data, string password) { if (string.IsNullOrEmpty(data) || string.IsNullOrEmpty(password) || !data.StartsWith("rij")) { return data; } data = data.Substring(3); string @string; using (Stream stream = Converter.FromString(typeof(Stream), data) as Stream) { using (Stream stream2 = Crypter.Decrypt(stream, password)) { byte[] array = new byte[data.Length]; int count = stream2.Read(array, 0, array.Length); @string = Encoding.UTF8.GetString(array, 0, count); } } return @string; } public static string ComputeHash(Stream input) { byte[] array = new byte[input.Length]; input.Read(array, 0, array.Length); return Crypter.ComputeHash(array); } public static string ComputeHash(byte[] input) { return BitConverter.ToString(new Murmur3().ComputeHash(input)).Replace("-", string.Empty); } public static string ComputeHash(string input) { return Crypter.ComputeHash(Encoding.UTF8.GetBytes(input)); } } }
来自:https://github.com/FastReports/FastReport
遇到一串不知道具体编码的字符串,使用以下代码勉强转中文了:
str = str.Replace("9B25", ""); List<byte> buffer = new List<byte>(); for (int i = 0; i < str.Length; i++) { if (i % 2 == 1) { string s = str.Substring(i - 1, 2); buffer.Add(Convert.ToByte(s, 16)); } } Encoding.Default.GetString(buffer.ToArray());
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
2018-01-04 [转]IIS 允许/禁止 目录浏览