上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 57 下一页
摘要: 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 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 整理了一些零知识证明的学习资料,需要的话自取 zk-SNARK:从零开始学习zk-SNARK系列:1、从零开始学习zk-SNARK(一)-多项式的性质与证明2、从零开始学习zk-SNARK(二)-多项式的非交互式零知识证明3、从零开始学习zk-SNARK(三)—从程序到多项式的构造4、从零开始学习z 阅读全文
posted @ 2021-09-23 16:18 zJanly 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(486) 评论(0) 推荐(0) 编辑
摘要: 1. 连续傅立叶变换(Continuous Fourier Transform) 对于时域连续函数 ,它的傅立叶正变换(FT)定义为 (用角频率 表示) 或者 (用频率 表示, ) 傅立叶逆变换(inverse FT)定义为 2. 离散傅立叶变换(Discrete Fourier Transform 阅读全文
posted @ 2021-09-23 10:18 zJanly 阅读(2585) 评论(0) 推荐(0) 编辑
摘要: Enlarge / Vanguard-protected titles like Valorant will require more security features when running on Windows 11. Riot Games 154WITH 101 POSTERS PARTI 阅读全文
posted @ 2021-09-14 14:12 zJanly 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 57 下一页