码迷,mamicode.com
首页 > 其他好文 > 详细

RSA加密解密与签名验证

时间:2014-07-28 15:19:23      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   art   

关于RSACryption帮助类定义见RSACryption

一、加密与解密

bubuko.com,布布扣
            //定义明文和密文变量
            string plaintext = "天道酬勤,厚德载物!";
            string ciphertext = "";

            //产生密钥
            string prikey = "", pubkey = "";
            rsa.RSAKey(out prikey, out pubkey);

            //加密解密过程
            ciphertext = rsa.RSAEncrypt(pubkey, plaintext);
            plaintext = rsa.RSADecrypt(prikey, ciphertext);
View Code

 

二、签名与验证

bubuko.com,布布扣
            //获取明文Hash值
            byte[] plaintextHash = null;
            rsa.GetHash(plaintext, ref plaintextHash);
            //获取签名密文
            string SignatureCiphertext = null;
            rsa.SignatureFormatter(prikey, plaintextHash, ref SignatureCiphertext);
            //验证
            string verify = rsa.SignatureDeformatter(pubkey, plaintextHash, SignatureCiphertext) ? "OK!没问题" : "NO!内容被篡改了";
View Code

 

Tips:利用RSA的签名和验证功能还可简单实现软件注册码功能,签名即注册码,验证即验证。

相关链接

RSA分段加密【解决“不正确的长度”的异常】

RSA加密解密与签名验证,布布扣,bubuko.com

RSA加密解密与签名验证

标签:style   blog   http   color   os   io   for   art   

原文地址:http://www.cnblogs.com/njl041x/p/3872916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!