代码def extGCD(a, b): if b == 0: return 1, 0, a x, y, q = extGCD(b, a % b) x, y =... Python实现椭圆曲线基础运算 2年前 (2023-04-16) 972 0 编程>小玩意
私钥、公钥、地址私钥由64位十六进制的字符组成私钥通过伪随机数产生公钥由130位十六进制的字符组成采用... 私钥、公钥、地址、助记词、Keystore 2年前 (2023-04-09) 879 0 区块链>以太坊
Fixed Income SecuritiesBasic FeaturesIssuer/BorrowerSupranational organizations, such as World Ba... CFAⅠFixed Income Securities 2年前 (2023-04-08) 1.1K 0 考证>CFAⅠ
原理某些网站可以提供三个月的通配符SSL证书,没有申请次数限制acme可以你的通过DNS服务商,定期自动用... acme生成腾讯云域名泛域名ssl证书 2年前 (2023-03-30) 1K 0 编程>工具
Market Organization and StructureFinancial systemMain functions of the financial systemAchieving ... CFAⅠEquity Investment 2年前 (2023-03-16) 1.1K 0 考证>CFAⅠ
1.英语语法综述句子的分类简单句(Simple Sentences)的构成简单句的组合(compound sentences复合句/并列... 语法 2年前 (2023-03-15) 743 0 金专>英语
第二章 流密码流密码的基本概念密钥k通过密钥流发生器z_i=f(k,\sigma_i)产生密钥流 \mathbf{z}=z_0z_1\d... 现代密码学 2年前 (2023-03-12) 1.4K 0 课程笔记
一些前置方法Matcher的其它方法Matcher.get_receiveclass Matcher(metaclass=MatcherMeta): @overloa... 第四节 Matcher的运行(send) 2年前 (2023-02-27) 514 0 机器人>NoneBot