| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529 | using System;using System.Collections.Generic;using System.IO;using System.Text;using Org.BouncyCastle.Asn1;using Org.BouncyCastle.Asn1.GM;using Org.BouncyCastle.Asn1.X9;using Org.BouncyCastle.Crypto;using Org.BouncyCastle.Crypto.Digests;using Org.BouncyCastle.Crypto.Engines;using Org.BouncyCastle.Crypto.Generators;using Org.BouncyCastle.Crypto.Parameters;using Org.BouncyCastle.Math;using Org.BouncyCastle.Math.EC;using Org.BouncyCastle.Security;using Org.BouncyCastle.Utilities;using Org.BouncyCastle.Utilities.Encoders;using Org.BouncyCastle.X509;namespace PTMedicalInsurance.Common{	public class GmUtil	{		public static byte[] SignSm3WithSm2(byte[] msg, byte[] userId, AsymmetricKeyParameter privateKey)		{			return GmUtil.RsAsn1ToPlainByteArray(GmUtil.SignSm3WithSm2Asn1Rs(msg, userId, privateKey));		}		public static byte[] SignSm3WithSm2Asn1Rs(byte[] msg, byte[] userId, AsymmetricKeyParameter privateKey)		{			byte[] result;			try			{				ISigner signer = SignerUtilities.GetSigner("SM3withSM2");				//signer.Init(true, new ParametersWithRandom(privateKey));				signer.Init(true, new ParametersWithID(privateKey, userId));				signer.BlockUpdate(msg, 0, msg.Length);				result = signer.GenerateSignature();			}			catch (Exception)			{				result = null;			}			return result;		}		public static bool VerifySm3WithSm2(byte[] msg, byte[] userId, byte[] rs, AsymmetricKeyParameter publicKey)		{			return rs != null && msg != null && userId != null && rs.Length == 64 && GmUtil.VerifySm3WithSm2Asn1Rs(msg, userId, GmUtil.RsPlainByteArrayToAsn1(rs), publicKey);		}		public static bool VerifySm3WithSm2Asn1Rs(byte[] msg, byte[] userId, byte[] sign, AsymmetricKeyParameter publicKey)		{			bool result;			try			{				ISigner signer = SignerUtilities.GetSigner("SM3withSM2");				signer.Init(false, publicKey);				signer.BlockUpdate(msg, 0, msg.Length);				result = signer.VerifySignature(sign);			}			catch (Exception)			{				result = false;			}			return result;		}		private static byte[] ChangeC1C2C3ToC1C3C2(byte[] c1c2c3)		{			int num = (GmUtil.x9ECParameters.Curve.FieldSize + 7) / 8 * 2 + 1;			byte[] array = new byte[c1c2c3.Length];			Buffer.BlockCopy(c1c2c3, 0, array, 0, num);			Buffer.BlockCopy(c1c2c3, c1c2c3.Length - 32, array, num, 32);			Buffer.BlockCopy(c1c2c3, num, array, num + 32, c1c2c3.Length - num - 32);			return array;		}		private static byte[] ChangeC1C3C2ToC1C2C3(byte[] c1c3c2)		{			int num = (GmUtil.x9ECParameters.Curve.FieldSize + 7) / 8 * 2 + 1;			byte[] array = new byte[c1c3c2.Length];			Buffer.BlockCopy(c1c3c2, 0, array, 0, num);			Buffer.BlockCopy(c1c3c2, num + 32, array, num, c1c3c2.Length - num - 32);			Buffer.BlockCopy(c1c3c2, num, array, c1c3c2.Length - 32, 32);			return array;		}		public static byte[] Sm2Decrypt(byte[] data, AsymmetricKeyParameter key)		{			return GmUtil.Sm2DecryptOld(GmUtil.ChangeC1C3C2ToC1C2C3(data), key);		}		public static byte[] Sm2Encrypt(byte[] data, AsymmetricKeyParameter key)		{			return GmUtil.ChangeC1C2C3ToC1C3C2(GmUtil.Sm2EncryptOld(data, key));		}		public static byte[] Sm2EncryptOld(byte[] data, AsymmetricKeyParameter pubkey)		{			byte[] result;			try			{				SM2Engine sm2Engine = new SM2Engine();				sm2Engine.Init(true, new ParametersWithRandom(pubkey, new SecureRandom()));				result = sm2Engine.ProcessBlock(data, 0, data.Length);			}			catch (Exception)			{				result = null;			}			return result;		}		public static byte[] Sm2DecryptOld(byte[] data, AsymmetricKeyParameter key)		{			byte[] result;			try			{				SM2Engine sm2Engine = new SM2Engine();				sm2Engine.Init(false, key);				result = sm2Engine.ProcessBlock(data, 0, data.Length);			}			catch (Exception)			{				result = null;			}			return result;		}		public static byte[] Sm3(byte[] bytes)		{			byte[] result;			try			{				SM3Digest sm3Digest = new SM3Digest();				sm3Digest.BlockUpdate(bytes, 0, bytes.Length);				result = DigestUtilities.DoFinal(sm3Digest);			}			catch (Exception)			{				result = null;			}			return result;		}		private static byte[] BigIntToFixexLengthBytes(BigInteger rOrS)		{			byte[] array = rOrS.ToByteArray();			if (array.Length == 32)			{				return array;			}			if (array.Length == 33 && array[0] == 0)			{				return Arrays.CopyOfRange(array, 1, 33);			}			if (array.Length < 32)			{				byte[] array2 = new byte[32];				Arrays.Fill(array2, 0);				Buffer.BlockCopy(array, 0, array2, 32 - array.Length, array.Length);				return array2;			}			throw new ArgumentException("err rs: " + Hex.ToHexString(array));		}		private static byte[] RsAsn1ToPlainByteArray(byte[] rsDer)		{			Asn1Sequence instance = Asn1Sequence.GetInstance(rsDer);			byte[] array = GmUtil.BigIntToFixexLengthBytes(DerInteger.GetInstance(instance[0]).Value);			byte[] array2 = GmUtil.BigIntToFixexLengthBytes(DerInteger.GetInstance(instance[1]).Value);			byte[] array3 = new byte[64];			Buffer.BlockCopy(array, 0, array3, 0, array.Length);			Buffer.BlockCopy(array2, 0, array3, 32, array2.Length);			return array3;		}		private static byte[] RsPlainByteArrayToAsn1(byte[] sign)		{			if (sign.Length != 64)			{				throw new ArgumentException("err rs. ");			}			BigInteger value = new BigInteger(1, Arrays.CopyOfRange(sign, 0, 32));			BigInteger value2 = new BigInteger(1, Arrays.CopyOfRange(sign, 32, 64));			Asn1EncodableVector asn1EncodableVector = new Asn1EncodableVector();			asn1EncodableVector.Add(new DerInteger(value));			asn1EncodableVector.Add(new DerInteger(value2));			byte[] result;			try			{				result = new DerSequence(asn1EncodableVector).GetEncoded("DER");			}			catch (IOException)			{				result = null;			}			return result;		}		public static AsymmetricCipherKeyPair GenerateKeyPair()		{			AsymmetricCipherKeyPair result;			try			{				ECKeyPairGenerator eckeyPairGenerator = new ECKeyPairGenerator();				eckeyPairGenerator.Init(new ECKeyGenerationParameters(GmUtil.ecDomainParameters, new SecureRandom()));				result = eckeyPairGenerator.GenerateKeyPair();			}			catch (Exception)			{				result = null;			}			return result;		}		public static ECPrivateKeyParameters GetPrivatekeyFromD(BigInteger d)		{			return new ECPrivateKeyParameters(d, GmUtil.ecDomainParameters);		}		public static ECPublicKeyParameters GetPublickeyFromXY(byte[] pubkey)		{			ECPoint q = GMNamedCurves.GetByName("SM2P256V1").Curve.DecodePoint(pubkey);			ECDomainParameters parameters = new ECDomainParameters(GmUtil.x9ECParameters.Curve, GmUtil.x9ECParameters.G, GmUtil.x9ECParameters.N);			return new ECPublicKeyParameters(q, parameters);		}		public static ECPublicKeyParameters GetPublickeyFromXY(BigInteger x, BigInteger y)		{			return new ECPublicKeyParameters(GmUtil.x9ECParameters.Curve.CreatePoint(x, y), GmUtil.ecDomainParameters);		}		public static AsymmetricKeyParameter GetPublickeyFromX509File(FileInfo file)		{			FileStream fileStream = null;			try			{				fileStream = new FileStream(file.FullName, FileMode.Open, FileAccess.Read);				return new X509CertificateParser().ReadCertificate(fileStream).GetPublicKey();			}			catch (Exception)			{			}			finally			{				if (fileStream != null)				{					fileStream.Close();				}			}			return null;		}		private static byte[] ToByteArray(int i)		{			return new byte[]			{				(byte)(i >> 24),				(byte)((i & 16777215) >> 16),				(byte)((i & 65535) >> 8),				(byte)(i & 255)			};		}		private static byte[] Join(params byte[][] byteArrays)		{			List<byte> list = new List<byte>();			for (int i = 0; i < byteArrays.Length; i++)			{				list.AddRange(byteArrays[i]);			}			return list.ToArray();		}		private static byte[] KDF(byte[] Z, int klen)		{			int num = 1;			int num2 = (int)Math.Ceiling((double)klen * 1.0 / 32.0);			List<byte> list = new List<byte>();			try			{				for (int i = 1; i < num2; i++)				{					list.AddRange(GmUtil.Sm3(GmUtil.Join(new byte[][]					{						Z,						GmUtil.ToByteArray(num)					})));					num++;				}				byte[] array = GmUtil.Sm3(GmUtil.Join(new byte[][]				{					Z,					GmUtil.ToByteArray(num)				}));				if (klen % 32 == 0)				{					list.AddRange(array);				}				else				{					list.AddRange(Arrays.CopyOfRange(array, 0, klen % 32));				}				return list.ToArray();			}			catch (Exception)			{			}			return null;		}		public static byte[] Sm4DecryptCBC(byte[] keyBytes, byte[] cipher, byte[] iv, string algo)		{			if (keyBytes.Length != 16)			{				throw new ArgumentException("err key length");			}			if (cipher.Length % 16 != 0)			{				throw new ArgumentException("err data length");			}			byte[] result;			try			{				KeyParameter parameters = ParameterUtilities.CreateKeyParameter("SM4", keyBytes);				IBufferedCipher cipher2 = CipherUtilities.GetCipher(algo);				if (iv == null)				{					iv = GmUtil.ZeroIv(algo);				}				cipher2.Init(false, new ParametersWithIV(parameters, iv));				result = cipher2.DoFinal(cipher);			}			catch (Exception)			{				result = null;			}			return result;		}		public static byte[] Sm4EncryptCBC(byte[] keyBytes, byte[] plain, byte[] iv, string algo)		{			if (keyBytes.Length != 16)			{				throw new ArgumentException("err key length");			}			if (plain.Length % 16 != 0)			{				throw new ArgumentException("err data length");			}			byte[] result;			try			{				KeyParameter parameters = ParameterUtilities.CreateKeyParameter("SM4", keyBytes);				IBufferedCipher cipher = CipherUtilities.GetCipher(algo);				if (iv == null)				{					iv = GmUtil.ZeroIv(algo);				}				cipher.Init(true, new ParametersWithIV(parameters, iv));				result = cipher.DoFinal(plain);			}			catch (Exception)			{				result = null;			}			return result;		}		public static byte[] Sm4EncryptECB(byte[] keyBytes, byte[] plain, string algo)		{			if (keyBytes.Length != 16)			{				throw new ArgumentException("err key length");			}			byte[] result;			try			{				KeyParameter parameters = ParameterUtilities.CreateKeyParameter("SM4", keyBytes);				IBufferedCipher cipher = CipherUtilities.GetCipher(algo);				cipher.Init(true, parameters);				result = cipher.DoFinal(plain);			}			catch (Exception)			{				result = null;			}			return result;		}		public static byte[] Sm4DecryptECB(byte[] keyBytes, byte[] cipher, string algo)		{			if (cipher.Length % 16 != 0)			{				throw new ArgumentException("err data length");			}			byte[] result;			try			{				KeyParameter parameters = ParameterUtilities.CreateKeyParameter("SM4", keyBytes);				IBufferedCipher cipher2 = CipherUtilities.GetCipher(algo);				cipher2.Init(false, parameters);				result = cipher2.DoFinal(cipher);			}			catch (Exception)			{				result = null;			}			return result;		}		public static GmUtil.Sm2Cert readSm2File(byte[] pem, string pwd)		{			GmUtil.Sm2Cert sm2Cert = new GmUtil.Sm2Cert();			GmUtil.Sm2Cert result;			try			{				Asn1Sequence asn1Sequence = (Asn1Sequence)Asn1Object.FromByteArray(pem);				Asn1Sequence asn1Sequence2 = (Asn1Sequence)asn1Sequence[1];				Asn1Sequence asn1Sequence3 = (Asn1Sequence)asn1Sequence[2];				Asn1OctetString asn1OctetString = (Asn1OctetString)asn1Sequence2[2];				byte[] data = GmUtil.KDF(Encoding.UTF8.GetBytes(pwd), 32);				byte[] bytes = GmUtil.Sm4DecryptCBC(Arrays.CopyOfRange(data, 16, 32), asn1OctetString.GetOctets(), Arrays.CopyOfRange(data, 0, 16), "SM4/CBC/PKCS7Padding");				sm2Cert.privateKey = GmUtil.GetPrivatekeyFromD(new BigInteger(1, bytes));				Asn1OctetString asn1OctetString2 = (Asn1OctetString)asn1Sequence3[1];				X509Certificate x509Certificate = new X509CertificateParser().ReadCertificate(asn1OctetString2.GetOctets());				sm2Cert.publicKey = x509Certificate.GetPublicKey();				sm2Cert.certId = x509Certificate.SerialNumber.ToString(10);				result = sm2Cert;			}			catch (Exception)			{				result = null;			}			return result;		}		public static GmUtil.Sm2Cert ReadSm2X509Cert(byte[] cert)		{			GmUtil.Sm2Cert sm2Cert = new GmUtil.Sm2Cert();			GmUtil.Sm2Cert result;			try			{				X509Certificate x509Certificate = new X509CertificateParser().ReadCertificate(cert);				sm2Cert.publicKey = x509Certificate.GetPublicKey();				sm2Cert.certId = x509Certificate.SerialNumber.ToString(10);				result = sm2Cert;			}			catch (Exception)			{				result = null;			}			return result;		}		public static byte[] ZeroIv(string algo)		{			byte[] result;			try			{				byte[] array = new byte[CipherUtilities.GetCipher(algo).GetBlockSize()];				Arrays.Fill(array, 0);				result = array;			}			catch (Exception)			{				result = null;			}			return result;		}		public static void Main2(string[] s)		{			foreach (object obj in GMNamedCurves.Names)			{				string text = (string)obj;			}			AsymmetricCipherKeyPair asymmetricCipherKeyPair = GmUtil.GenerateKeyPair();			byte[] bytes = Encoding.UTF8.GetBytes("message digest");			byte[] bytes2 = Encoding.UTF8.GetBytes("userId");			GmUtil.SignSm3WithSm2(bytes, bytes2, asymmetricCipherKeyPair.Private);			GmUtil.GetPrivatekeyFromD(new BigInteger("097b5230ef27c7df0fa768289d13ad4e8a96266f0fcb8de40d5942af4293a54a", 16));			GmUtil.GetPublickeyFromX509File(new FileInfo("d:/certs/69629141652.cer"));			GmUtil.GetPublickeyFromXY(new BigInteger("59cf9940ea0809a97b1cbffbb3e9d96d0fe842c1335418280bfc51dd4e08a5d4", 16), new BigInteger("9a7f77c578644050e09a9adc4245d1e6eba97554bc8ffd4fe15a78f37f891ff8", 16));			AsymmetricCipherKeyPair asymmetricCipherKeyPair2 = GmUtil.GenerateKeyPair();			AsymmetricKeyParameter @public = asymmetricCipherKeyPair2.Public;			AsymmetricKeyParameter @private = asymmetricCipherKeyPair2.Private;			byte[] array = GmUtil.Sm2Encrypt(Encoding.UTF8.GetBytes("s"), @public);			array = GmUtil.Sm2Decrypt(array, @private);			byte[] plain = Hex.Decode("0123456789abcdeffedcba98765432100123456789abcdeffedcba98765432100123456789abcdeffedcba9876543210");			byte[] keyBytes = Hex.Decode("0123456789abcdeffedcba9876543210");			Hex.Decode("595298c7c6fd271f0402f804c33d3f66");			array = GmUtil.Sm4EncryptECB(keyBytes, plain, "SM4/ECB/NoPadding");			array = GmUtil.Sm4DecryptECB(keyBytes, array, "SM4/ECB/NoPadding");			array = Convert.FromBase64String("MIIDHQIBATBHBgoqgRzPVQYBBAIBBgcqgRzPVQFoBDDW5/I9kZhObxXE9Vh1CzHdZhIhxn+3byBU\nUrzmGRKbDRMgI3hJKdvpqWkM5G4LNcIwggLNBgoqgRzPVQYBBAIBBIICvTCCArkwggJdoAMCAQIC\nBRA2QSlgMAwGCCqBHM9VAYN1BQAwXDELMAkGA1UEBhMCQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFu\nY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEbMBkGA1UEAwwSQ0ZDQSBURVNUIFNNMiBPQ0Ex\nMB4XDTE4MTEyNjEwMTQxNVoXDTIwMTEyNjEwMTQxNVowcjELMAkGA1UEBhMCY24xEjAQBgNVBAoM\nCUNGQ0EgT0NBMTEOMAwGA1UECwwFQ1VQUkExFDASBgNVBAsMC0VudGVycHJpc2VzMSkwJwYDVQQD\nDCAwNDFAWnRlc3RAMDAwMTAwMDA6U0lHTkAwMDAwMDAwMTBZMBMGByqGSM49AgEGCCqBHM9VAYIt\nA0IABDRNKhvnjaMUShsM4MJ330WhyOwpZEHoAGfqxFGX+rcL9x069dyrmiF3+2ezwSNh1/6YqfFZ\nX9koM9zE5RG4USmjgfMwgfAwHwYDVR0jBBgwFoAUa/4Y2o9COqa4bbMuiIM6NKLBMOEwSAYDVR0g\nBEEwPzA9BghggRyG7yoBATAxMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmNmY2EuY29tLmNuL3Vz\nL3VzLTE0Lmh0bTA4BgNVHR8EMTAvMC2gK6AphidodHRwOi8vdWNybC5jZmNhLmNvbS5jbi9TTTIv\nY3JsNDI4NS5jcmwwCwYDVR0PBAQDAgPoMB0GA1UdDgQWBBREhx9VlDdMIdIbhAxKnGhPx8FcHDAd\nBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwDAYIKoEcz1UBg3UFAANIADBFAiEAgWvQi3h6\niW4jgF4huuXfhWInJmTTYr2EIAdG8V4M8fYCIBixygdmfPL9szcK2pzCYmIb6CBzo5SMv50Odycc\nVfY6");			string pwd = "cfca1234";			GmUtil.Sm2Cert sm2Cert = GmUtil.readSm2File(array, pwd);			array = GmUtil.Sm2Encrypt(Encoding.UTF8.GetBytes("s"), (ECPublicKeyParameters)sm2Cert.publicKey);			array = GmUtil.Sm2Decrypt(array, (ECPrivateKeyParameters)sm2Cert.privateKey);			byte[] bytes3 = Encoding.UTF8.GetBytes("message digest");			bytes2 = Encoding.UTF8.GetBytes("userId");			GmUtil.SignSm3WithSm2(bytes3, bytes2, (ECPrivateKeyParameters)sm2Cert.privateKey);		}		private static X9ECParameters x9ECParameters = GMNamedCurves.GetByName("sm2p256v1");		private static ECDomainParameters ecDomainParameters = new ECDomainParameters(GmUtil.x9ECParameters.Curve, GmUtil.x9ECParameters.G, GmUtil.x9ECParameters.N);		public const string SM4_ECB_NOPADDING = "SM4/ECB/NoPadding";		public const string SM4_ECB_PKCS7PADDING = "SM4/ECB/PKCS7Padding";		public const string SM4_CBC_NOPADDING = "SM4/CBC/NoPadding";		public const string SM4_CBC_PKCS7PADDING = "SM4/CBC/PKCS7Padding";		public class Sm2Cert		{			public AsymmetricKeyParameter privateKey;			public AsymmetricKeyParameter publicKey;			public string certId;		}	}}
 |