会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zJanly
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
23
24
25
26
27
28
29
30
31
···
58
下一页
2021年10月9日
gcc make
摘要: wget http://ftp.gnu.org/gnu/gcc/gcc-9.4.0/gcc-9.4.0.tar.gz./contrib/download_prerequisitesmkdir buildcd build/ ../configure -enable-checking=release -
阅读全文
posted @ 2021-10-09 11:12 zJanly
阅读(43)
评论(0)
推荐(0)
2021年9月26日
qemu
摘要: https://github.com/qemu/qemu git clone --recursive git@github.com:qemu/qemu.git sudo apt-get install gcc-12sudo update-alternatives --install /usr/bin
阅读全文
posted @ 2021-09-26 11:03 zJanly
阅读(82)
评论(0)
推荐(0)
2021年9月23日
zk
摘要: 整理了一些零知识证明的学习资料,需要的话自取 zk-SNARK:从零开始学习zk-SNARK系列:1、从零开始学习zk-SNARK(一)-多项式的性质与证明2、从零开始学习zk-SNARK(二)-多项式的非交互式零知识证明3、从零开始学习zk-SNARK(三)—从程序到多项式的构造4、从零开始学习z
阅读全文
posted @ 2021-09-23 16:18 zJanly
阅读(664)
评论(0)
推荐(0)
fft
摘要: http://web.cecs.pdx.edu/~maier/cs584/Lectures/lect07b-11-MG.pdf https://www.cnblogs.com/Paulliant/p/10254037.html https://blog.csdn.net/dieyi9889/arti
阅读全文
posted @ 2021-09-23 11:02 zJanly
阅读(530)
评论(0)
推荐(0)
傅里叶变换
摘要: 1. 连续傅立叶变换(Continuous Fourier Transform) 对于时域连续函数 ,它的傅立叶正变换(FT)定义为 (用角频率 表示) 或者 (用频率 表示, ) 傅立叶逆变换(inverse FT)定义为 2. 离散傅立叶变换(Discrete Fourier Transform
阅读全文
posted @ 2021-09-23 10:18 zJanly
阅读(2704)
评论(0)
推荐(0)
2021年9月10日
go
摘要: https://studygolang.com/dl/golang/go1.17.1.src.tar.gz GOOS=linux GOARCH=ppc64 ./bootstrap.bash http://docs.studygolang.com/doc/install/source wget htt
阅读全文
posted @ 2021-09-10 13:57 zJanly
阅读(82)
评论(0)
推荐(0)
2021年9月9日
tag
摘要: git tag v1.0.4 git push --tags git tag -d v1.0.4 git push origin :refs/tags/v1.0.4
阅读全文
posted @ 2021-09-09 15:16 zJanly
阅读(113)
评论(0)
推荐(0)
2021年9月7日
cloudflare_finalExp
摘要: https://github.com/ConsenSys/gnark-crypto github.com/consensys/gnark cloudflarefunc finalExponentiation(in *gfP12, pool *bnPool) *gfP12 { d := newGFp1
阅读全文
posted @ 2021-09-07 15:02 zJanly
阅读(40)
评论(0)
推荐(0)
2021年8月25日
bn
摘要: Barreto-Naehrig curves p(t) = 36t 4 + 36t 3 + 24t 2 + 6t + 1, r(t) = 36t 4 + 36t 3 + 18t 2 + 6t + 1, tr(t) = 6t 2 + 1, func main() { p := 6 * 66410 +
阅读全文
posted @ 2021-08-25 14:54 zJanly
阅读(282)
评论(0)
推荐(0)
2021年8月23日
快速幂算法
摘要: 7^1010 //非递归快速幂 int qpow(int a, int n){ int ans = 1; while(n){ if(n&1) //如果n的当前末位为1 ans *= a; //ans乘上当前的a a *= a; //a自乘 n >>= 1; //n往右移一位 } return ans
阅读全文
posted @ 2021-08-23 10:59 zJanly
阅读(23)
评论(0)
推荐(0)
上一页
1
···
23
24
25
26
27
28
29
30
31
···
58
下一页
公告