91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#中怎么實現sm4加密

c#
小億
89
2024-03-26 18:49:16
欄目: 編程語言

在C#中實現SM4加密可以通過使用第三方庫來實現。一個常用的庫是Bouncy Castle,可以通過NuGet安裝。

首先,安裝Bouncy Castle庫:

Install-Package BouncyCastle

然后,使用以下代碼示例實現SM4加密:

using System;
using System.IO;
using System.Text;
using System.Security.Cryptography;
using Org.BouncyCastle.Crypto;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Crypto.Engines;

public class SM4Encryption
{
    public static string Encrypt(string plaintext, string key)
    {
        byte[] keyBytes = Encoding.UTF8.GetBytes(key);
        byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);

        SM4Engine sm4 = new SM4Engine();
        KeyParameter keyParam = new KeyParameter(keyBytes);
        sm4.Init(true, keyParam);

        byte[] ciphertextBytes = new byte[plaintextBytes.Length];
        for (int i = 0; i < plaintextBytes.Length; i++)
        {
            sm4.ProcessBlock(plaintextBytes, i, ciphertextBytes, i);
        }

        return Convert.ToBase64String(ciphertextBytes);
    }

    public static string Decrypt(string ciphertext, string key)
    {
        byte[] keyBytes = Encoding.UTF8.GetBytes(key);
        byte[] ciphertextBytes = Convert.FromBase64String(ciphertext);

        SM4Engine sm4 = new SM4Engine();
        KeyParameter keyParam = new KeyParameter(keyBytes);
        sm4.Init(false, keyParam);

        byte[] plaintextBytes = new byte[ciphertextBytes.Length];
        for (int i = 0; i < ciphertextBytes.Length; i++)
        {
            sm4.ProcessBlock(ciphertextBytes, i, plaintextBytes, i);
        }

        return Encoding.UTF8.GetString(plaintextBytes);
    }
}

使用示例:

string plaintext = "Hello, SM4!";
string key = "0123456789abcdeffedcba9876543210";
string ciphertext = SM4Encryption.Encrypt(plaintext, key);
Console.WriteLine("Ciphertext: " + ciphertext);

string decryptedText = SM4Encryption.Decrypt(ciphertext, key);
Console.WriteLine("Decrypted Text: " + decryptedText);

請注意,以上代碼示例僅供參考,并不保證在所有情況下都能正確工作。在實際應用中,建議根據具體需求進行適當調整和優化。

0
旺苍县| 合肥市| 隆昌县| 青铜峡市| 康马县| 霍州市| 文山县| 隆安县| 长宁县| 五莲县| 页游| 宜丰县| 龙胜| 九江市| 普兰县| 左权县| 丹棱县| 凤翔县| 东平县| 阳信县| 江津市| 新闻| 阿鲁科尔沁旗| 彭山县| 海晏县| 靖江市| 友谊县| 鄂伦春自治旗| 永定县| 扬州市| 金塔县| 固镇县| 托里县| 磐石市| 丹东市| 区。| 松滋市| 房山区| 双峰县| 轮台县| 安吉县|