求加密算法,求解密
原密码:admin
加密后:A79ECB371DC0F477A39B0EB0C01029D53DD6E361
有大神能知道加密算法么?
------解决方案--------------------四十位的密文
,我认为无解
------解决方案--------------------至少不是MD5和3des。
------解决方案--------------------sha1算法
------解决方案--------------------给你一个C# 的
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Security.Cryptography;
namespace HJMS
{
public class CryptUtil
{
/// <summary>
/// 第一种加密方法
/// </summary>
/// <param name="input">明文字符串</param>
/// <returns>已加密字符串</returns>
public static string EncryptString(string input)
{
if (input.Equals(string.Empty))
{
return input;
}
byte[] byKey = { 0x63, 0x68, 0x65, 0x6E, 0x79, 0x75, 0x61, 0x6E };
byte[] IV = { 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10 };
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
byte[] inputByteArray = Encoding.UTF8.GetBytes(input);