免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2646 | 回复: 11
打印 上一主题 下一主题

巨型整数运算问题,请大侠们帮忙啊 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-06-02 18:11 |只看该作者 |倒序浏览
因为现在用RSA算法进行数字签名,里面的运算涉及到很大的数字,
比如(235^122),如果用一般的pow函数运算肯定溢出,不知道各位老大有什么好方法,在unix下的bc可以很快算出结果,不知道是怎么做的,哪里能找到他的源码啊,请各位大侠帮忙啊,小弟着俩天就要用了,我哭

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
2 [报告]
发表于 2004-06-02 18:21 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

1,bc 的源码到 google 上去搜,保证找到一箩筐。
2,大数的运算可以自己编程序实现,你想一下小学二年级的时候老师是如何教你“多位数乘法”的,就知道了。

论坛徽章:
0
3 [报告]
发表于 2004-06-02 18:39 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

2楼的话言简意赅哈

论坛徽章:
0
4 [报告]
发表于 2004-06-03 10:15 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

原帖由 "flw" 发表:
1,bc 的源码到 google 上去搜,保证找到一箩筐。
2,大数的运算可以自己编程序实现,你想一下小学二年级的时候老师是如何教你“多位数乘法”的,就知道了。

老大,能给一个bc源码的链接吗,我在google例搜索出来的都是没有关系的东东,自己可以做一个算法,而且能够实现,关键是效率啊,如果一个加密过程要几个小时谁还会用啊,我还是想看看bc的实现,他的效率很高啊,巨大的数字运算很快就出来结果了

论坛徽章:
0
5 [报告]
发表于 2004-06-03 10:25 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

我要在几天内完成这个工作,我自己认为要完成(4453^2234)这种巨型运算,而且保证效率,自己是无法实现了,只能借鉴前人的东西了,哪位大仙认为可以做到吗,但是unix下的bc确实可以啊,只用了2秒,就看到一大屏幕的数字出来了,请各位老大不要和我说让我自己实现了,我斗胆问一下老大自己能够实现吗,得罪得罪,只要告诉我可以查看的链接

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
6 [报告]
发表于 2004-06-03 10:26 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

你看置顶的帖子,有一个科学计算的库。

论坛徽章:
0
7 [报告]
发表于 2004-06-03 10:35 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

RSA 计算用的是模乘,那有象你这样算的?

论坛徽章:
0
8 [报告]
发表于 2004-06-03 11:15 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

[quote]原帖由 "win_hate"]RSA 计算用的是模乘,那有象你这样算的?[/quote 发表:

下面是转贴的rsa算法,你自己看一下吧,有没有我这样算的
The RSA algorithm was invented in 1978 by Ron Rivest, Adi Shamir, and Leonard Adleman.

Here's the relatively easy to understand math behind RSA public key encryption.

Find P and Q, two large (e.g., 1024-bit) prime numbers.

Choose E such that E is greater than 1, E is less than PQ, and E and (P-1)(Q-1) are relatively prime, which means they have no prime factors in common. E does not have to be prime, but it must be odd. (P-1)(Q-1) can't be prime because it's an even number.

Compute D such that (DE - 1) is evenly divisible by (P-1)(Q-1). Mathematicians write this as DE = 1 (mod (P-1)(Q-1)), and they call D the multiplicative inverse of E. This is easy to do -- simply find an integer X which causes D = (X(P-1)(Q-1) + 1)/E to be an integer, then use that value of D.

The encryption function is C = (T^E) mod PQ, where C is the ciphertext (a positive integer), T is the plaintext (a positive integer), and ^ indicates exponentiation. The message being encrypted, T, must be less than the modulus, PQ.

The decryption function is T = (C^D) mod PQ, where C is the ciphertext (a positive integer), T is the plaintext (a positive integer), and ^ indicates exponentiation.
Your public key is the pair (PQ, E). Your private key is the number D (reveal it to no one). The product PQ is the modulus (often called N in the literature). E is the public exponent. D is the secret exponent.

You can publish your public key freely, because there are no known easy methods of calculating D, P, or Q given only (PQ, E) (your public key). If P and Q are each 1024 bits long, the sun will burn out before the most powerful computers presently in existence can factor your modulus into P and Q.

论坛徽章:
0
9 [报告]
发表于 2004-06-03 13:14 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

呵呵,

论坛徽章:
0
10 [报告]
发表于 2004-06-03 13:49 |只看该作者

巨型整数运算问题,请大侠们帮忙啊

[quote]原帖由 "lenovo"]你看置顶的帖子,有一个科学计算的库。[/quote 发表:

谢谢,已经下载了库,正在找相关的函数,比较累,有没有熟悉的人指点一二,不胜感激
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP