コード例 #1
0
ファイル: Program.cs プロジェクト: fengjc49/SM4core
        private static string EBCEncode()
        {
            SM4Utils sm4 = new SM4Utils {
                secretKey = "JeF8U9wHFOMfs2Y8", hexString = false
            };
            string cipherData = sm4.Encrypt_ECB(@"This is a test string !");

            Console.WriteLine("加密结果是{0}", cipherData);
            return(cipherData);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: fengjc49/SM4core
        private static string EBCDecode(string ebc)
        {
            SM4Utils sm4 = new SM4Utils {
                secretKey = "JeF8U9wHFOMfs2Y8", hexString = false
            };
            string plain_data = sm4.Decrypt_ECB(ebc);

            Console.WriteLine("解密结果是{0}", plain_data);
            return(plain_data);
        }
コード例 #3
0
ファイル: Program.cs プロジェクト: fengjc49/SM4core
        //加密
        private static string CBCEncode()
        {
            Console.WriteLine("CBC模式加密");
            SM4Utils sm4 = new SM4Utils();

            sm4.secretKey = "JeF8U9wHFOMfs2Y8";
            string tempiv = GetRandomString(16, true, true, true, false, null).ToLower();

            sm4.iv = tempiv;
            string cipher_data    = sm4.Encrypt_CBC(@"This is a test string !");
            string cipher_data_iv = sm4.iv + cipher_data;

            Console.WriteLine("加密结果是{0}", cipher_data_iv);
            return(cipher_data_iv);
        }
コード例 #4
0
ファイル: Program.cs プロジェクト: fengjc49/SM4core
        /// <summary>
        /// 解密
        /// </summary>
        /// <param name="cbc"></param>
        /// <returns></returns>
        private static string CBCDecode(string cbc)
        {
            SM4Utils sm4 = new SM4Utils();

            sm4.secretKey = "JeF8U9wHFOMfs2Y8";
            byte[] bytedata = Encoding.Default.GetBytes(cbc);
            byte[] temp_iv  = new byte[16];

            byte[] file_bytedata = new byte[bytedata.Length - 16];
            Array.Copy(bytedata, temp_iv, 16);
            sm4.iv = Encoding.Default.GetString(temp_iv);
            Array.Copy(bytedata, 16, file_bytedata, 0, (bytedata.Length - 16));
            string plain_data = sm4.Decrypt_CBC(Encoding.Default.GetString(file_bytedata));

            Console.WriteLine("解密结果是{0}", plain_data);

            return(plain_data);
        }