Discrete Log Algorithms :Baby-step giant-step

Posted guhongying

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Discrete Log Algorithms :Baby-step giant-step 相关的知识,希望对你有一定的参考价值。

技术分享图片技术分享图片技术分享图片技术分享图片

 

 

 

import gmpy2
def discreteLog(g,p,a):              #离散对数,求 g^x=a mod p中的x
    table={}
    sq=gmpy2.isqrt(p-1)
    m=gmpy2.add(sq,1)       #向上取整
    for i in range(m):
        k=-i*m
        y=gmpy2.powmod(g,k,p)
        mod=((a%p)*y)%p
        table.update({mod:i})
    j=0
    while True:
        result=gmpy2.powmod(g,j,p)
        if result in table.keys():
            sa=m*table[result]+j
            return sa
            #return table[result],m      #将对应的下标返回
        else:
            j=j+1
        
        
p=93450983094850938450983409623
a=45416776270485369791375944998 

x=discreteLog(-2,p,a)
print(x)        

 

小的可以,大的数就报错“Memory error”了

 

以上是关于Discrete Log Algorithms :Baby-step giant-step 的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1420/1319 Discrete Root

证明与计算: Discrete logarithm

analysis of algorithms

#leetcode-algorithms-4 Median of Two Sorted Arrays

BUUCTF-crypto部分题解

leetcode -- Algorithms -- 4_ Median of Two Sorted Arrays