鱼C论坛

 找回密码
 立即注册
查看: 9149|回复: 37

[技术交流] 一个RSA加密算法。

[复制链接]
发表于 2014-3-11 13:12:26 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这个算法参考了多个资源。还有自己的改变。RSA.cpp
#include <iostream>
#include <ctime>
#include "HugeInt.h"
#include "Random.h"

// Compute x^n ( mod p ).
// HugeInt: must have copy constructor, operator=,
//     conversion from int, *, /, %, ==, and !=
//     Assumes that p is not zero and power( 0, 0, p ) is 1
HugeInt power( const HugeInt & x, const HugeInt & n , const HugeInt & p )
{

    if( n == 0 )
        return 1;

    HugeInt tmp = power( ( x * x ) % p, n / 2, p );
    
    if( n % 2 != 0 )
        tmp = ( tmp * x ) % p;

    return tmp;
}

// Probabilistic primality testing routine.
// If witness does not return 1, n is definitely composite.
// Do this by computing a^i ( mod n ) and looking for
// non-trivial square roots of 1 along the way.
// HugeInt: must have copy constructor, operator=,
//     conversion from int, *, /, -, %, ==, and !=
HugeInt witness( const HugeInt & a, const HugeInt & i, const HugeInt & n )
{
    if( i == 0 )
        return 1;

    HugeInt x = witness( a, i / 2, n );
    if( x == 0 )    // If n is recursively composite, stop
        return 0;

      // n is not prime if we find a nontrivial square root of 1
    HugeInt y = ( x * x ) % n;
    if( y == 1 && x != 1 && x != n - 1 )
        return 0;

    if( i % 2 == 1 )
        y = ( a * y ) % n;

    return y;
}

// Make NUM_TRIALS calls to witness to check if n is prime.
bool isPrime( const HugeInt & n )
{
    const int NUM_TRIALS = 5;
        Random rnd;

    for( int counter = 0; counter < NUM_TRIALS; counter++ )
        if( witness( rnd.randomInt( 2, n ) , n - 1, n ) != 1 )
            return false;

    return true;
}

// Returns the greatest common divisor of a and b.
HugeInt gcd( const HugeInt & a, const HugeInt & b )
{
    if( b == 0 )
        return a;
    else
        return gcd( b, a % b );
}

// Given a and b, assume gcd( a, b ) = 1. 
// Find x and y such that  a x + b y = 1.
// HugeInt: must have copy constructor,
//     zero-parameter constructor, operator=,
//     conversion from int, *, /, +, -, %, ==, and >
void fullGcd( const HugeInt & a, const HugeInt & b,
              HugeInt & x, HugeInt & y )
{
    HugeInt x1, y1;

    if( b == 0 )
    {
        x = 1;       // If a != 1, there is no inverse
        y = 0;       // We omit this check
    }
    else
    {
        fullGcd( b, a % b, x1, y1 );
        x = y1;
        y = x1 - ( a / b ) * y1;
    }
}

// GetPrime randomly picks a large, odd number until it gets
// one that is prime. It uses is_prime to check for primality.
// The more failed primes that occur, the larger the N becomes.

HugeInt GetPrime( )
{
        Random rnd(time(0));
        HugeInt N = rnd.randomInt( 1000000000, INT_MAX ); 
        HugeInt NN = rnd.randomInt( 1000000000, INT_MAX );
        HugeInt multiplier(1314521);
        N = N * NN * N * multiplier;
        HugeInt Odd = 2;

        if ( N % 2 == 0 )
                N = N+1;

        while ( !isPrime( N )){
                N = N + Odd;
        }
        return N;
}

// Solve a x == 1 ( mod n ).
// Assume that gcd( a, n ) = 1.
HugeInt inverse( const HugeInt & a, const HugeInt & n )
{
    HugeInt x, y;

    fullGcd( a, n, x, y );
    return x > 0 ? x : x + n;
}

// Illustrate an RSA computation
int main( )
{
      // Sample of how RSA works.
    HugeInt p = GetPrime();
    HugeInt q = GetPrime();
    HugeInt message, code, decode;
    HugeInt n, nPrime, e, d;
        std::string myletter = "For my friends!";
        message.rsa(myletter);

    std::cout <<  "p: " << p << std::endl;
    std::cout <<  "q: " << q << std::endl;

    n = p * q;
    std::cout <<  "n: " << n << std::endl;

    nPrime = ( p - 1 ) * ( q - 1 );
    std::cout <<  "nprime: " << nPrime << std::endl;

    for( e = nPrime/521; gcd( e, nPrime ) != 1; e++ );
    std::cout <<  "e: " << e << std::endl;

    d = inverse( e, nPrime );
    std::cout <<  "d: " << d << std::endl;

    std::cout << "Verify inverse: " << ( e * d % ( nPrime ) ) << std::endl;

    std::cout << "message: " << myletter << std::endl;

    code = power( message, e, n ); 
    decode = power( code, d, n );

    std::cout << "Code: " << code << std::endl;
    std::cout << "Decode: " << decode.asr() << std::endl;

    if( message != decode )
        std::cout << "OOPS: " << std::endl;
    else
        std::cout << "Success!!!!" << std::endl;

    return 0;
}
游客,如果您要查看本帖隐藏内容请回复

RSA方法源于Mark Allen Weiss的实现。

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-3-11 13:26:10 From FishC Mobile | 显示全部楼层
看看,呃呃呃
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-3-11 22:15:06 | 显示全部楼层
由于发帖字数限制,完全的源代码只有回复下载了才能看到。这里可以提供运行过后的一个截图。很成功的~ RSA.jpg
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-4-4 15:13:37 | 显示全部楼层
支持楼主  这个挺好 研究研究
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-4-14 13:00:01 | 显示全部楼层
hhhhhhhhh呵呵呵
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-15 12:22:51 | 显示全部楼层
回帖是一种美德
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-16 11:30:11 From FishC Mobile | 显示全部楼层
回帖是一种美德
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-20 20:38:50 | 显示全部楼层
这东西不错呀,非常感谢楼主分享。。。!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-21 10:06:55 | 显示全部楼层
谢谢分享
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-25 11:53:45 | 显示全部楼层
感谢楼主无私分享!!!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-25 14:30:54 | 显示全部楼层
谢谢分享~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-31 10:29:42 | 显示全部楼层
顶顶顶顶顶顶顶
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-9-1 10:27:36 | 显示全部楼层
一句话,支持你,支持开源,支持原创。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-9-10 18:43:21 | 显示全部楼层
很好噶
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-9-11 09:41:58 | 显示全部楼层
感谢楼主无私分享!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-9-21 12:50:28 | 显示全部楼层
看看。。。。。。。。。。。。。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-10-4 18:01:22 | 显示全部楼层
学习一下。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-11-2 00:42:41 | 显示全部楼层
四处找资料,,恶补知识
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-3-22 22:33:58 | 显示全部楼层
谢谢分享,辛苦了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-4-14 15:42:23 | 显示全部楼层
谢谢分享!学习它。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 14:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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