You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

91 lines
2.7 KiB

/*******************************************************************************
* Copyright © 2017-2020 Znyc.Cloudcar.Admin.Framework 版权所有
* Author: Znyc
* Description: Znyc快速开发平台
* Website:http://www.Znyc.Cloudcar.Admin.com
*********************************************************************************/
using System;
using System.Text;
namespace Znyc.Cloudcar.Admin.Commons.Encrypt
{
/// <summary>
/// </summary>
public class EncryptHelper
{
/// <summary>
/// </summary>
/// <param name="source"></param>
/// <param name="key"></param>
/// <returns></returns>
public static string ComputeHash(string source, string key)
{
if (source == null)
{
return "";
}
string text = "abcdefghjklmnopqrstuvwxyz";
if (source.Length < 0x1a)
{
source = source + text.Substring(source.Length);
}
byte[] inArray = Encoding.Unicode.GetBytes(source);
int length = inArray.Length;
if (key == null || key.Length == 0)
{
key = "Encryptheqinwn";
}
byte[] bytes = Encoding.Unicode.GetBytes(key);
byte num2 = Convert.ToByte(bytes.Length);
byte num3 = 2;
byte index = 0;
for (int i = 0; i < length; i++)
{
byte[] buffer3;
IntPtr ptr;
byte num5 = (byte)(bytes[index] | num2);
num5 = (byte)(num5 & num3);
(buffer3 = inArray)[(int)(ptr = (IntPtr)i)] = (byte)(buffer3[(int)ptr] ^ num5);
num3 = (byte)(num3 + 1);
if (num3 > 0xfd)
{
num3 = 2;
}
index = (byte)(index + 1);
if (index >= num2)
{
index = 0;
}
}
return Convert.ToBase64String(inArray, 0, inArray.Length);
}
/// <summary>
/// </summary>
/// <param name="source"></param>
/// <param name="key"></param>
/// <returns></returns>
public static string EncryptStr(string source, string key)
{
key = key.PadLeft(8, 'x');
return EncodeHelper.DesEncrypt(source, key);
}
/// <summary>
/// </summary>
/// <param name="source"></param>
/// <param name="key"></param>
/// <returns></returns>
public static string UnEncryptStr(string source, string key)
{
key = key.PadLeft(8, 'x');
return EncodeHelper.DesDecrypt(source, key);
}
}
}