找回密码
 立即注册

QQ登录

只需一步,快速开始

thrall

超级版主

14

主题

174

帖子

2026

积分

超级版主

Rank: 8Rank: 8

积分
2026

活字格认证微信认证勋章

thrall
超级版主   /  发表于:2013-5-3 16:07  /   查看:5669  /  回复:0
RSA算法是第一个既能用于数据加密也能用于数字签名的算法。它易于理解和操作,也很流行。它的安全性是基于大整数素因子分解的困难性,而大整数因子分解问题是数学上的著名难题,至今没有有效的方法予以解决,因此可以确保RSA算法的安全性。

    到目前Silverlight4 Beta发布为止,Silverlight中仍然没有提供非对称加密及数字签名相关的算法。而.NET Framework中提供的RSA等算法,都是通过操作系统提供的相关API实现的,没法移植到Silverlight中使用。因此很难实现一个健壮点的Silverlight纯客户端的注册验证算法。这几天抽空写了个Silverlight下可用的RSA算法,使用非对称加密和数字签名使Silverlight纯客户端的注册验证算法健壮了不少。关于这个Silverlight下可用的RSA算法的具体实现,记录在下面,欢迎大家拍砖。

    RSA算法实现主要分为三部分:包括公钥和私钥的产生,非对称加密和解密,数字签名和验证,下面将逐个介绍RSA算法的工作原理及我的实现方法。





    1,公钥和私钥的产生

    随意选择两个大素数p、q,p不等于q,计算n = p * q。
    随机选择一个整数e,满足e和( p – 1 ) * ( q – 1 )互质。(注:e很容易选择,如3, 17, 65537等都可以。.NET Framework中e默认选择的就是65537)
利用Euclid算法计算解密密钥d,满足
      e * d ≡ 1 ( mod ( p - 1 ) * ( q - 1 ) )
    其中n和d也要互质。

    其中e和n就是公钥,d和n就是私钥。P、q销毁。

    在.NET Framework的RSA算法中,e对应RSAParameters.Exponent;d对应RSAParameters.D;n对应RSAParameters.ModulusExponent。.NET Framework中的RSA算法默认使用1024位长的密钥。公钥和私钥是利用.NET Framework的RSACryptoServiceProvider生成公钥xml文件和私钥xml文件来实现的。生成公钥和私钥xml文件的程序本身不是Silverlight程序。
  1. RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();

  2.     //生成公钥XML字符串
  3.     string publicKeyXmlString = rsa.ToXmlString(false);

  4.     //生成私钥XML字符串
  5.     string privateKeyXmlString = rsa.ToXmlString(true);
复制代码

公钥和私钥将从生成的公钥xml文件和私钥xml文件中导入。
  1. public class RSAPublicKey
  2.     {
  3.         public byte[] Modulus;
  4.         public byte[] Exponent;

  5.         public static RSAPublicKey FromXmlString(string xmlString)
  6.         {
  7.             if (string.IsNullOrEmpty(xmlString))
  8.             {
  9.                 return null;
  10.             }

  11.             try
  12.             {
  13.                 using (XmlReader reader = XmlReader.Create(new StringReader(xmlString)))
  14.                 {
  15.                     if (!reader.ReadToFollowing("RSAKeyValue"))
  16.                     {
  17.                         return null;
  18.                     }

  19.                     if (reader.LocalName != "Modulus" && !reader.ReadToFollowing("Modulus"))
  20.                     {
  21.                         return null;
  22.                     }
  23.                     string modulus = reader.ReadElementContentAsString();

  24.                     if (reader.LocalName != "Exponent" && !reader.ReadToFollowing("Exponent"))
  25.                     {
  26.                         return null;
  27.                     }
  28.                     string exponent = reader.ReadElementContentAsString();

  29.                     RSAPublicKey publicKey = new RSAPublicKey();
  30.                     publicKey.Modulus = Convert.FromBase64String(modulus);
  31.                     publicKey.Exponent = Convert.FromBase64String(exponent);

  32.                     return publicKey;
  33.                 }
  34.             }
  35.             catch
  36.             {
  37.                 return null;
  38.             }
  39.         }        
  40.     }





  41. public class RSAPrivateKey
  42.     {
  43.         public byte[] Modulus;
  44.         public byte[] D;

  45.         public static RSAPrivateKey FromXmlString(string xmlString)
  46.         {
  47.             if (string.IsNullOrEmpty(xmlString))
  48.             {
  49.                 return null;
  50.             }

  51.             try
  52.             {
  53.                 using (XmlReader reader = XmlReader.Create(new StringReader(xmlString)))
  54.                 {
  55.                     if (!reader.ReadToFollowing("RSAKeyValue"))
  56.                     {
  57.                         return null;
  58.                     }

  59.                     if (reader.LocalName != "Modulus" && !reader.ReadToFollowing("Modulus"))
  60.                     {
  61.                         return null;
  62.                     }
  63.                     string modulus = reader.ReadElementContentAsString();

  64.                     if (reader.LocalName != "D" && !reader.ReadToFollowing("D"))
  65.                     {
  66.                         return null;
  67.                     }
  68.                     string d = reader.ReadElementContentAsString();

  69.                     RSAPrivateKey privateKey = new RSAPrivateKey();
  70.                     privateKey.Modulus = Convert.FromBase64String(modulus);
  71.                     privateKey.D = Convert.FromBase64String(d);

  72.                     return privateKey;
  73.                 }
  74.             }
  75.             catch
  76.             {
  77.                 return null;
  78.             }
  79.         }        
  80.     }
复制代码

2,非对称加密和解密
    私钥加密m(二进制表示)时,首先把m分成长s的数据块 m1, m2 ... mi,其中 2^s <= n, s 尽可能的大。执行如下计算:
        ci = mi ^ d (mod n)
    公钥解密c(二进制表示)时,也需要将c分成长s的数据块c1, c2 ... ci,执行如下计算:
        mi = ci ^ e (mod n)

    在某些情况下,也会使用公钥加密->私钥解密。原理和私钥加密->公钥解密一样。下面是私钥计算和公钥计算的算法。其中利用到了Chew Keong TAN的BigInteger类。.NET Framework 4中提供的BigInteger.ModPow方法好像有问题。
  1. private static byte[] Compute(byte[] data, RSAPublicKey publicKey, int blockSize)
  2.         {
  3.             //
  4.             // 公钥加密/解密公式为:ci = mi^e ( mod n )            
  5.             //
  6.             // 先将 m(二进制表示)分成数据块 m1, m2, ..., mi ,然后进行运算。
  7.             //
  8.             BigInteger e = new BigInteger(publicKey.Exponent);
  9.             BigInteger n = new BigInteger(publicKey.Modulus);

  10.             int blockOffset = 0;
  11.             using (MemoryStream stream = new MemoryStream())
  12.             {
  13.                 while (blockOffset < data.Length)
  14.                 {
  15.                     int blockLen = Math.Min(blockSize, data.Length - blockOffset);
  16.                     byte[] blockData = new byte[blockLen];
  17.                     Buffer.BlockCopy(data, blockOffset, blockData, 0, blockLen);

  18.                     BigInteger mi = new BigInteger(blockData);
  19.                     BigInteger ci = mi.modPow(e, n);//ci = mi^e ( mod n )

  20.                     byte[] block = ci.getBytes();
  21.                     stream.Write(block, 0, block.Length);
  22.                     blockOffset += blockLen;
  23.                 }

  24.                 return stream.ToArray();
  25.             }
  26.         }

  27.         private static byte[] Compute(byte[] data, RSAPrivateKey privateKey, int blockSize)
  28.         {
  29.             //
  30.             // 私钥加密/解密公式为:mi = ci^d ( mod n )
  31.             //
  32.             // 先将 c(二进制表示)分成数据块 c1, c2, ..., ci ,然后进行运算。            
  33.             //
  34.             BigInteger d = new BigInteger(privateKey.D);
  35.             BigInteger n = new BigInteger(privateKey.Modulus);

  36.             int blockOffset = 0;

  37.             using (MemoryStream stream = new MemoryStream())
  38.             {
  39.                 while (blockOffset < data.Length)
  40.                 {
  41.                     int blockLen = Math.Min(blockSize, data.Length - blockOffset);
  42.                     byte[] blockData = new byte[blockLen];
  43.                     Buffer.BlockCopy(data, blockOffset, blockData, 0, blockLen);

  44.                     BigInteger ci = new BigInteger(blockData);
  45.                     BigInteger mi = ci.modPow(d, n);//mi = ci^d ( mod n )

  46.                     byte[] block = mi.getBytes();
  47.                     stream.Write(block, 0, block.Length);
  48.                     blockOffset += blockLen;
  49.                 }

  50.                 return stream.ToArray();
  51.             }
  52.         }
复制代码

下面是私钥加密->公钥解密的实现。
  1. public static byte[] Encrypt(byte[] data, RSAPublicKey publicKey)
  2.         {
  3.             if (data == null)
  4.             {
  5.                 throw new ArgumentNullException("data");
  6.             }

  7.             if (publicKey == null)
  8.             {
  9.                 throw new ArgumentNullException("publicKey");
  10.             }

  11.             int blockSize = publicKey.Modulus.Length - 1;
  12.             return Compute(data, publicKey, blockSize);
  13.         }

  14.         public static byte[] Decrypt(byte[] data, RSAPrivateKey privateKey)
  15.         {
  16.             if (data == null)
  17.             {
  18.                 throw new ArgumentNullException("data");
  19.             }

  20.             if (privateKey == null)
  21.             {
  22.                 throw new ArgumentNullException("privateKey");
  23.             }

  24.             int blockSize = privateKey.Modulus.Length;
  25.             return Compute(data, privateKey, blockSize);
  26.         }
复制代码

下面是公钥加密->私钥解密的实现。
  1. public static byte[] Encrypt(byte[] data, RSAPrivateKey privateKey)
  2.         {
  3.             if (data == null)
  4.             {
  5.                 throw new ArgumentNullException("data");
  6.             }

  7.             if (privateKey == null)
  8.             {
  9.                 throw new ArgumentNullException("privateKey");
  10.             }

  11.             int blockSize = privateKey.Modulus.Length - 1;
  12.             return Compute(data, privateKey, blockSize);
  13.         }

  14.         public static byte[] Decrypt(byte[] data, RSAPublicKey publicKey)
  15.         {
  16.             if (data == null)
  17.             {
  18.                 throw new ArgumentNullException("data");
  19.             }

  20.             if (publicKey == null)
  21.             {
  22.                 throw new ArgumentNullException("publicKey");
  23.             }

  24.             int blockSize = publicKey.Modulus.Length;
  25.             return Compute(data, publicKey, blockSize);
  26.         }
复制代码

3,数字签名和验证
    私钥签名数据m时,先对m进行hash计算,得到计算结果h。然后将h使用私钥加密,得到加密后的密文s即为签名。
    公钥验证签名s时,先将m进行hash计算,得到计算结果h。然后使用公钥解密s得到结果h’。如果h==h’即验证成功,否则验证失败。

    在某些情况下,也会使用公钥签名->私钥验证。原理和私钥签名->公钥验证一样。

    下面是私钥签名->公钥验证的实现。
  1. public static byte[] Sign(byte[] data, RSAPublicKey publicKey, HashAlgorithm hash)
  2.         {
  3.             if (data == null)
  4.             {
  5.                 throw new ArgumentNullException("data");
  6.             }

  7.             if (publicKey == null)
  8.             {
  9.                 throw new ArgumentNullException("publicKey");
  10.             }

  11.             if (hash == null)
  12.             {
  13.                 throw new ArgumentNullException("hash");
  14.             }

  15.             byte[] hashData = hash.ComputeHash(data);
  16.             byte[] signature = Encrypt(hashData, publicKey);
  17.             return signature;
  18.         }

  19.         public static bool Verify(byte[] data, RSAPrivateKey privateKey, HashAlgorithm hash, byte[] signature)
  20.         {
  21.             if (data == null)
  22.             {
  23.                 throw new ArgumentNullException("data");
  24.             }

  25.             if (privateKey == null)
  26.             {
  27.                 throw new ArgumentNullException("privateKey");
  28.             }

  29.             if (hash == null)
  30.             {
  31.                 throw new ArgumentNullException("hash");
  32.             }

  33.             if (signature == null)
  34.             {
  35.                 throw new ArgumentNullException("signature");
  36.             }

  37.             byte[] hashData = hash.ComputeHash(data);
  38.             byte[] signatureHashData = Decrypt(signature, privateKey);

  39.             if (signatureHashData != null &amp;&amp; signatureHashData.Length == hashData.Length)
  40.             {
  41.                 for (int i = 0; i < signatureHashData.Length; i++)
  42.                 {
  43.                     if (signatureHashData[i] != hashData[i])
  44.                     {
  45.                         return false;
  46.                     }
  47.                 }
  48.                 return true;
  49.             }

  50.             return false;
  51.         }
复制代码

下面是公钥签名->私钥验证的实现。
  1. public static byte[] Sign(byte[] data, RSAPrivateKey privateKey, HashAlgorithm hash)
  2.         {
  3.             if (data == null)
  4.             {
  5.                 throw new ArgumentNullException("data");
  6.             }

  7.             if (privateKey == null)
  8.             {
  9.                 throw new ArgumentNullException("privateKey");
  10.             }

  11.             if (hash == null)
  12.             {
  13.                 throw new ArgumentNullException("hash");
  14.             }

  15.             byte[] hashData = hash.ComputeHash(data);
  16.             byte[] signature = Encrypt(hashData, privateKey);
  17.             return signature;
  18.         }

  19.         public static bool Verify(byte[] data, RSAPublicKey publicKey, HashAlgorithm hash, byte[] signature)
  20.         {
  21.             if (data == null)
  22.             {
  23.                 throw new ArgumentNullException("data");
  24.             }

  25.             if (publicKey == null)
  26.             {
  27.                 throw new ArgumentNullException("publicKey");
  28.             }

  29.             if (hash == null)
  30.             {
  31.                 throw new ArgumentNullException("hash");
  32.             }

  33.             if (signature == null)
  34.             {
  35.                 throw new ArgumentNullException("signature");
  36.             }

  37.             byte[] hashData = hash.ComputeHash(data);

  38.             byte[] signatureHashData = Decrypt(signature, publicKey);

  39.             if (signatureHashData != null &amp;&amp; signatureHashData.Length == hashData.Length)
  40.             {
  41.                 for (int i = 0; i < signatureHashData.Length; i++)
  42.                 {
  43.                     if (signatureHashData[i] != hashData[i])
  44.                     {
  45.                         return false;
  46.                     }
  47.                 }
  48.                 return true;
  49.             }

  50.             return false;
  51.         }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 立即注册
返回顶部