用Encrypt、Decrypt对密码进行编码和解码操作。

    在程序中调用这个类Encryption:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;

namespace DBTools
{
    public class Encryption
    {
        /// <summary> 
        /// 加密数据 
        /// </summary> 
        /// <param name="Text"></param> 
        /// <param name="sKey"></param> 
        /// <returns></returns> 
        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();
        }
        /// <summary> 
        /// 解密数据 
        /// </summary> 
        /// <param name="Text"></param> 
        /// <param name="sKey"></param> 
        /// <returns></returns> 
        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 < len; 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());
        } 
        // MD5 32 位
        public static String Encrypt32(String convertString)
        {
            MD5 md5 = new MD5CryptoServiceProvider();
            byte[] bytes = System.Text.Encoding.UTF8.GetBytes(convertString);
            bytes = md5.ComputeHash(bytes);
            md5.Clear();
            string ret = "";
            for (int i = 0; i < bytes.Length; i++)
            {
                ret += Convert.ToString(bytes[i], 16).PadLeft(2, '0');
            }
            return ret.PadLeft(32, '0').ToLower();
        }
        // MD5 16 位
        public static string Encrypt16(string convertString)
        {
            MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
            string t2 = BitConverter.ToString(md5.ComputeHash(UTF8Encoding.Default.GetBytes(convertString)), 4, 8);
            t2 = t2.Replace("-", "");
            return t2.ToLower();
        }
    }
}
    cs:

编码时:string Pwd = DBTools.Encryption.Encrypt(LoginPwd, "Master");    
            //LoginPwd--要加密的数据。也可以将二进制值传递给此函数。此参数区分大小写,即使是在不区分大小写的数据库中也是如此。
            //Master--用来对 LoginPwd 进行加密的加密密钥。解密时必须使用同一密钥才能获得原始值。此参数区分大小写,即使是在不区分大小写的数据库中也是如此。
与大多数口令一样,最好选择无法被轻易猜到的密钥值。建议选择满足以下条件的密钥值:长度至少为 16 个字符,混合使用大小写并包含数字、字母和特殊字符。每次要对数据进行解密时,都需要使用此密钥。

解码时:string Pwd = DBTools.Encryption.Decrypt(LoginPwd, "Master"); //跟编码讲解一致



在Python中,我们可以创建简单的函数来进行单表多表替换的基本密码编码解码。这里以简单的字母表替换为例: **单表替换(Caesar Cipher,比如移位加密)** ```python def caesar_cipher_encrypt(text, shift): encrypted_text = "" for char in text: if char.isalpha(): # 只处理字母字符 shifted_char = chr(((ord(char.lower()) - ord('a') + shift) % 26) + ord('a')) if char.isupper(): encrypted_text += shifted_char.upper() else: encrypted_text += shifted_char else: encrypted_text += char return encrypted_text def caesar_cipher_decrypt(encrypted_text, shift): return caesar_cipher_encrypt(encrypted_text, -shift) # 示例 plaintext = "Hello, World!" shift = 3 encrypted_text = caesar_cipher_encrypt(plaintext, shift) decrypted_text = caesar_cipher_decrypt(encrypted_text, shift) print(f"Encrypted: {encrypted_text}") print(f"Decrypted: {decrypted_text}") ``` **多表替换(如凯撒密码的Vigenère密码)** ```python def vigenere_cipher(text, key, mode="encrypt"): key_len = len(key) encrypted_text = "" for i in range(len(text)): char = text[i] key_char = key[i % key_len] # 循环使用密钥 if char.isalpha(): shift = ord(key_char.lower()) - ord('a') if mode == "encrypt": encrypted_char = chr(((ord(char.lower()) - ord('a') + shift) % 26) + ord('a')) elif mode == "decrypt": encrypted_char = chr(((ord(char.lower()) - ord('a') - shift) % 26) + ord('a')) if char.isupper(): encrypted_text += encrypted_char.upper() else: encrypted_text += encrypted_char else: encrypted_text += char return encrypted_text # 示例 plaintext = "Hello, World!" key = "Key" mode = "encrypt" encrypted_text = vigenere_cipher(plaintext, key, mode) print(f"{mode.capitalize()}ed with Key: {encrypted_text}") ``` 这两个例子展示了基本的单表(Caesar Cipher)多表(Vigenère Cipher)加密方法。你可以根据需要调整参数扩展到其他替换表。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值