日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > C# >内容正文

C#

des加解密java c#,C#编写DES加密、解密类

發(fā)布時(shí)間:2025/3/8 C# 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 des加解密java c#,C#编写DES加密、解密类 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

這個(gè)C#類封裝的DES加密解密,可以使用默認(rèn)秘鑰進(jìn)行加密、解密,也可以自定義秘鑰進(jìn)行加密、解密,調(diào)用簡(jiǎn)單方便。

示例一:

using System;

using System.Security.Cryptography;

using System.Text;

namespace DotNet.Utilities

{

///

/// DES加密/解密類。

///

public class DESEncrypt

{

public DESEncrypt()

{

}

#region ========加密========

///

/// 加密

///

///

///

public static string Encrypt(string Text)

{

return Encrypt(Text,"sharejs.com");

}

///

/// 加密數(shù)據(jù)

///

///

///

///

public static string Encrypt(string Text,string sKey)

{

DESCryptoServiceProvider des = new DESCryptoServiceProvider();

byte[] inputByteArray;

inputByteArray=Encoding.Default.GetBytes(Text);

des.Key = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));

des.IV = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));

System.IO.MemoryStream ms=new System.IO.MemoryStream();

CryptoStream cs=new CryptoStream(ms,des.CreateEncryptor(),CryptoStreamMode.Write);

cs.Write(inputByteArray,0,inputByteArray.Length);

cs.FlushFinalBlock();

StringBuilder ret=new StringBuilder();

foreach( byte b in ms.ToArray())

{

ret.AppendFormat("{0:X2}",b);

}

return ret.ToString();

}

#endregion

#region ========解密========

///

/// 解密

///

///

///

public static string Decrypt(string Text)

{

return Decrypt(Text,"sharejs.com");

}

///

/// 解密數(shù)據(jù)

///

///

///

///

public static string Decrypt(string Text,string sKey)

{

DESCryptoServiceProvider des = new DESCryptoServiceProvider();

int len;

len=Text.Length/2;

byte[] inputByteArray = new byte[len];

int x,i;

for(x=0;x

{

i = Convert.ToInt32(Text.Substring(x * 2, 2), 16);

inputByteArray[x]=(byte)i;

}

des.Key = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));

des.IV = ASCIIEncoding.ASCII.GetBytes(System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8));

System.IO.MemoryStream ms=new System.IO.MemoryStream();

CryptoStream cs=new CryptoStream(ms,des.CreateDecryptor(),CryptoStreamMode.Write);

cs.Write(inputByteArray,0,inputByteArray.Length);

cs.FlushFinalBlock();

return Encoding.Default.GetString(ms.ToArray());

}

#endregion

}

}

示例二:

///

public class Help_Encrypt

{

///

///

///

///

public static string Encode(string str, string key)

{

try

{

DESCryptoServiceProvider provider = new DESCryptoServiceProvider();

provider.Key = Encoding.ASCII.GetBytes(key.Substring(0, 8));

provider.IV = Encoding.ASCII.GetBytes(key.Substring(0, 8));

byte[] bytes = Encoding.GetEncoding("GB2312").GetBytes(str);

MemoryStream stream = new MemoryStream();

CryptoStream stream2 = new CryptoStream(stream, provider.CreateEncryptor(), CryptoStreamMode.Write);

stream2.Write(bytes, 0, bytes.Length);

stream2.FlushFinalBlock();

StringBuilder builder = new StringBuilder();

foreach (byte num in stream.ToArray())

{

builder.AppendFormat("{0:X2}", num);

}

stream.Close();

return builder.ToString();

}

catch (Exception) { return "xxxx"; }

}

///

///

///

///

public static string Decode(string str, string key)

{

try

{

DESCryptoServiceProvider provider = new DESCryptoServiceProvider();

provider.Key = Encoding.ASCII.GetBytes(key.Substring(0, 8));

provider.IV = Encoding.ASCII.GetBytes(key.Substring(0, 8));

byte[] buffer = new byte[str.Length / 2];

for (int i = 0; i < (str.Length / 2); i++)

{

int num2 = Convert.ToInt32(str.Substring(i * 2, 2), 0x10);

buffer[i] = (byte)num2;

}

MemoryStream stream = new MemoryStream();

CryptoStream stream2 = new CryptoStream(stream, provider.CreateDecryptor(), CryptoStreamMode.Write);

stream2.Write(buffer, 0, buffer.Length);

stream2.FlushFinalBlock();

stream.Close();

return Encoding.GetEncoding("GB2312").GetString(stream.ToArray());

}

catch (Exception) { return ""; }

}

}

JAVADES加密解密類

package com.bgxt.messages;

import java.io.UnsupportedEncodingException;

import java.security.*;

import javax.crypto.Cipher;

import javax.crypto.SecretKey;

import javax.crypto.SecretKeyFactory;

import javax.crypto.spec.DESKeySpec;

import javax.crypto.spec.IvParameterSpec;

/**

* 字符串工具集合

* @author Liudong

*/

public class StringUtils {

private static final String PASSWORD_CRYPT_KEY = XmlUtil.getConfig().getPasswdKey().substring(0,8);

//private final static String DES = "DES";

//private static final byte[] desKey;

//解密數(shù)據(jù)

public static String decrypt(String message,String key) throws Exception {

byte[] bytesrc =convertHexString(message);

Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");

DESKeySpec desKeySpec = new DESKeySpec(key.getBytes("UTF-8"));

SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");

SecretKey secretKey = keyFactory.generateSecret(desKeySpec);

IvParameterSpec iv = new IvParameterSpec(key.getBytes("UTF-8"));

cipher.init(Cipher.DECRYPT_MODE, secretKey, iv);

byte[] retByte = cipher.doFinal(bytesrc);

return new String(retByte);

}

public static byte[] encrypt(String message, String key)

throws Exception {

Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");

DESKeySpec desKeySpec = new DESKeySpec(key.getBytes("UTF-8"));

SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");

SecretKey secretKey = keyFactory.generateSecret(desKeySpec);

IvParameterSpec iv = new IvParameterSpec(key.getBytes("UTF-8"));

cipher.init(Cipher.ENCRYPT_MODE, secretKey, iv);

return cipher.doFinal(message.getBytes("UTF-8"));

}

public static String encrypt(String value){

String result="";

try{

value=java.net.URLEncoder.encode(value, "utf-8");

result=toHexString(encrypt(value, PASSWORD_CRYPT_KEY)).toUpperCase();

}catch(Exception ex){

ex.printStackTrace();

return "";

}

return result;

}

public static byte[] convertHexString(String ss)

{

byte digest[] = new byte[ss.length() / 2];

for(int i = 0; i < digest.length; i++)

{

String byteString = ss.substring(2 * i, 2 * i + 2);

int byteValue = Integer.parseInt(byteString, 16);

digest[i] = (byte)byteValue;

}

return digest;

}

public static String toHexString(byte b[]) {

StringBuffer hexString = new StringBuffer();

for (int i = 0; i < b.length; i++) {

String plainText = Integer.toHexString(0xff & b[i]);

if (plainText.length() < 2)

plainText = "0" + plainText;

hexString.append(plainText);

}

return hexString.toString();

}

public static void main(String[] args) throws Exception {

String value="01";

System.out.println("加密數(shù)據(jù):"+value);

System.out.println("密碼為:"+XmlUtil.getConfig().getPasswdKey());

String a=encrypt( value);

System.out.println("加密后的數(shù)據(jù)為:"+a);

}

}

以上所述就是本文的全部?jī)?nèi)容了,希望大家能夠喜歡。

創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)

總結(jié)

以上是生活随笔為你收集整理的des加解密java c#,C#编写DES加密、解密类的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。