摘要:
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 阅读全文
摘要:
https://github.com/stefano81/dcpabe.git Over prime fields, we call an elliptic curve E supersingular if #E(Fq) = q+1 (Weil reciprocity). Let f and g b 阅读全文