时空CLR解密登陆密码源码
2021/8/21 14:06:05
本文主要是介绍时空CLR解密登陆密码源码,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
public static SqlString GetPwd(string code ) { string txt = code; if(string.IsNullOrEmpty(txt)) { return "口令为空"; } string[] keyA = new string[6] { "wa6j1c", "fblrk7", "mg9q0s", "vu3zth", "po4xy2", "ni5d8e" }; string[] keyB = new string[6] { "ke3wms", "jnx9i8", "dpqzl6", "vyg1bh", "7a4c2f", "u5rto0" }; string str , str1 , str2 ; int x, y, p; for (x = 0; x < txt.Length; x++) { for (y = 1; y <= 6; y++) { string temp = txt.Substring(x, 1); string temp2 = keyA[y - 1]; p = temp2.IndexOf(temp) + 1; if (p > 0) { str1 = str1 + (y - 1).ToString(); str2 = (p - 1).ToString() + str2; break; } } } str = str1 + str2; x = 0; for (p = 1; p <= 3; p++) { x = x * 6 + Convert.ToInt32(str.Substring(p - 1, 1)); } str = str.Substring(3, x); if (str.Length % 2 == 1) { return "解码错误"; } string restr ; for (p = 1; p <= str.Length / 2; p++) { restr = restr + keyB[(int)Convert.ToChar(str.Substring(p - 1, 1)) - (int)Convert.ToChar("0")].Substring ((int)Convert.ToChar(str.Substring(str.Length - p, 1)) - (int)Convert.ToChar("0"), 1); } return new SqlString (restr); }
时空CLR登陆密码解密源码 适用于SQL SERVER2005 以上版本
这篇关于时空CLR解密登陆密码源码的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器