在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
其实.NET Framework已经提供实现DES算法的类: System.Security.Cryptography.DESCryptoServiceProvider。之所以要把一个Delphi写的DES算法翻译成C#,是因为网友espnstar想用Delphi加密,C#解密,详见CSDN贴子: http://topic.csdn.net/t/20050726/18/4169690.html。
1// Des.cs - 一个Delphi写的DES算法, 翻译成C#
感谢网友espnstar提供Delphi版的源程序:
2// Wed 2005.09.14 3 4// public byte[] EncryBytes (byte[] inData, byte[] keyByte); 5// public byte[] DecryBytes (byte[] inData, byte[] keyByte); 6// public string EncryStr (string Str, string Key ); 7// public string DecryStr (string Str, string Key ); 8// public string EncryStrHex(string Str, string Key ); 9// public string DecryStrHex(string StrHex, string Key ); 10 11namespace Skyiv 12 End of namespace Skyiv
1unit Des;
2 3. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论