开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 1288|回复: 13
收起左侧

[其它源码] 非对称加密RSA C#加密源码

[复制链接]
结帖率:95% (84/88)
发表于 2024-6-6 10:09:00 | 显示全部楼层 |阅读模式   美国
分享源码
界面截图: -
是否带模块: 纯源码
备注说明: -
RSA C#加密源码,不知道写的对不对,请各位指正,只是略微搞懂个原理。还有就是里面肯定有更简洁的方式找公匙私匙,也欢迎大佬补充。
注意:使用RSA加密时密匙必须大于加密内容,否则输出错误信息。



[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.Numerics;
using System.Security.Cryptography;

public class HelloWorld
{
    public static void Main(string[] args)
    {
        Console.WriteLine("STARTED");
        for (int i = 0; i < 1; i++)
        {
            var primes = GenerateLargePrimes(4096);
            CalcKey(primes.Item1, primes.Item2);
        }
    }

    private static (BigInteger, BigInteger) GenerateLargePrimes(int bitLength)
    {
        BigInteger firstPrime = _GenerateLargePrime(bitLength);
        BigInteger secondPrime = _GenerateLargePrime(bitLength);
        return (firstPrime, secondPrime);
    }

    private static BigInteger _GenerateLargePrime(int bitLength)
    {
        using (var rng = new RNGCryptoServiceProvider())
        {
            BigInteger prime;
            byte[] bytes = new byte[bitLength / 8];
            do
            {
                rng.GetBytes(bytes);
                prime = new BigInteger(bytes);
                prime = BigInteger.Abs(prime);
                prime |= BigInteger.One; // 确保是奇数
            } while (!IsProbablyPrime(prime, 10)); // 使用 Miller-Rabin 测试

            return prime;
        }
    }

    private static bool IsProbablyPrime(BigInteger source, int certainty)
    {
        if (source == 2 || source == 3)
            return true;
        if (source < 2 || source % 2 == 0)
            return false;

        BigInteger d = source - 1;
        int s = 0;

        while (d % 2 == 0)
        {
            d /= 2;
            s += 1;
        }

        for (int i = 0; i < certainty; i++)
        {
            BigInteger a = RandomIntegerBelow(source - 2) + 1;
            BigInteger temp = d;
            BigInteger mod = BigInteger.ModPow(a, temp, source);
            if (mod == 1 || mod == source - 1)
                continue;

            for (int j = 0; j < s - 1; j++)
            {
                mod = BigInteger.ModPow(mod, 2, source);
                if (mod == 1)
                    return false;
                if (mod == source - 1)
                    break;
            }

            if (mod != source - 1)
                return false;
        }

        return true;
    }

    private static BigInteger RandomIntegerBelow(BigInteger n)
    {
        using (var rng = new RNGCryptoServiceProvider())
        {
            byte[] bytes = n.ToByteArray();
            BigInteger r;

            do
            {
                rng.GetBytes(bytes);
                r = new BigInteger(bytes);
            } while (r >= n || r <= 0);

            return r;
        }
    }

    public static void CalcKey(BigInteger p, BigInteger q)
    {
        BigInteger n = p * q;
        BigInteger phi = (p - 1) * (q - 1);

        BigInteger e = FindCoprime(phi);
        BigInteger d = ModInverse(e, phi);

        Console.WriteLine("Public key (e, n): (" + e + ", " + n + ")");
        Console.WriteLine("Private key (d, n): (" + d + ", " + n + ")");

        BigInteger message = BigInteger.Parse("9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999");
        BigInteger encrypted = Encrypt(message, e, n);

        Console.WriteLine("Encrypted: " + encrypted);

        BigInteger decrypted = Decrypt(encrypted, d, n);
        Console.WriteLine("Decrypted: " + decrypted);
    }

    public static BigInteger GCD(BigInteger a, BigInteger b)
    {
        if (b == 0)
            return a;
        return GCD(b, a % b);
    }

    public static BigInteger FindCoprime(BigInteger r)
    {
        BigInteger e = 2;
        while (e < r)
        {
            if (GCD(e, r) == 1)
                return e;
            e++;
        }
        return 1;
    }

    public static BigInteger ModInverse(BigInteger e, BigInteger r)
    {
        BigInteger x, y;
        BigInteger gcd = ExtendedGCD(e, r, out x, out y);
        if (gcd != 1)
        {
            throw new Exception("Inverse doesn't exist.");
        }
        else
        {
            return (x % r + r) % r;
        }
    }

    public static BigInteger ExtendedGCD(BigInteger a, BigInteger b, out BigInteger x, out BigInteger y)
    {
        if (a == 0)
        {
            x = 0;
            y = 1;
            return b;
        }
        BigInteger x1, y1;
        BigInteger gcd = ExtendedGCD(b % a, a, out x1, out y1);
        x = y1 - (b / a) * x1;
        y = x1;
        return gcd;
    }

    public static BigInteger Encrypt(BigInteger m, BigInteger e, BigInteger N)
    {
        return BigInteger.ModPow(m, e, N);
    }

    public static BigInteger Decrypt(BigInteger c, BigInteger d, BigInteger N)
    {
        return BigInteger.ModPow(c, d, N);
    }
}



评分

参与人数 3精币 +4 收起 理由
wa690602724 + 1 感谢分享,很给力!~
光影魔术 + 2 新技能已get√
財財 + 1 感谢分享,很给力!~

查看全部评分


签到天数: 6 天

发表于 2024-9-16 08:03:24 | 显示全部楼层   福建省龙岩市

2024年前来考古,学习一下
回复 支持 反对

使用道具 举报

发表于 2024-8-8 12:53:32 | 显示全部楼层   贵州省贵阳市
感谢分享
回复 支持 反对

使用道具 举报

签到天数: 6 天

发表于 2024-6-9 21:01:30 | 显示全部楼层   湖北省武汉市
感谢分享
回复 支持 反对

使用道具 举报

结帖率:100% (1/1)

签到天数: 15 天

发表于 2024-6-9 16:33:27 | 显示全部楼层   广西壮族自治区柳州市
感谢分享源码
回复 支持 反对

使用道具 举报

结帖率:73% (8/11)

签到天数: 25 天

发表于 2024-6-8 08:49:23 | 显示全部楼层   河南省焦作市
易语言一键换肤
回复 支持 反对

使用道具 举报

签到天数: 28 天

发表于 2024-6-7 18:02:06 | 显示全部楼层   广东省揭阳市
新技能已get√
回复 支持 反对

使用道具 举报

签到天数: 1 天

发表于 2024-6-7 15:33:43 | 显示全部楼层   山东省青岛市

支持开源~!感谢分享
回复 支持 反对

使用道具 举报

结帖率:90% (18/20)

签到天数: 13 天

发表于 2024-6-7 12:19:27 | 显示全部楼层   安徽省芜湖市
支持开源~!感谢分享
回复 支持 反对

使用道具 举报

结帖率:80% (4/5)

签到天数: 2 天

发表于 2024-6-7 11:43:53 | 显示全部楼层   山东省潍坊市
已经顶贴,感谢您对论坛的支持!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表