<% if (page.mathjax || page.math) { %> <% } %> smileless-L的博客
×

Tags

探索与 "python" 相关的所有文章

python

共有 1 篇文章
Crypto实用函数类

crypto python函数类标签(空格分隔): crypto 求$a^{x} = c \mod m $ 123456from sympy.ntheory import discrete_logM = 100000000000099c = 114514a = 13x = discrete_log(M, c, a)print(x) 使用discrete_log库的discrete_log ...