-
discrete_log:通用的求离散对数的方法,discrete_log(a,base,ord,operation)
-
discrete_log_rho:求离散对数的Pollard-Rho算法,discrete_log_rho(a,base,ord,operation)
-
discrete_log_lambda:求离散对数的Pollard-kangaroo算法(也称为lambda算法),discrete_log_lambda(a,base,bounds,operation)
-
bsgs:小步大步法,bsgs(base,a,bounds,operation)
参数说明:求解以base为底,a的对数;ord为base的阶,可以缺省,operation可以是'+'与'',默认为'';bounds是一个区间(ld,ud),需要保证所计算的对数在此区间内。