sage求解离散对数

  1. discrete_log:通用的求离散对数的方法,discrete_log(a,base,ord,operation)

  2. discrete_log_rho:求离散对数的Pollard-Rho算法,discrete_log_rho(a,base,ord,operation)

  3. discrete_log_lambda:求离散对数的Pollard-kangaroo算法(也称为lambda算法),discrete_log_lambda(a,base,bounds,operation)

  4. bsgs:小步大步法,bsgs(base,a,bounds,operation)

参数说明:求解以base为底,a的对数;ord为base的阶,可以缺省,operation可以是'+'与'',默认为'';bounds是一个区间(ld,ud),需要保证所计算的对数在此区间内。

上一篇:MySQL常用操作、查询与函数


下一篇:数据库|视图