摘要:
GO 使用静态链接库编译 生成可执行文件 使用第三方 .a 文件,无源码构造 go build 和 go install 都需要使用源码来进行编译。但是有时候我们只有.a或者.so文件。并不能获取到第三方库的源码,这时我们需要静态链接库编译的技巧; 上图是实验前的文件分布。 使用静态链接库编译命令: 阅读全文
摘要:
http://safecurves.cr.yp.to/equation.html choosing safe curves for elliptic-curve cryptography Introduction Curve parameters: Fields Equations Base poi 阅读全文
摘要:
package mainimport ( "fmt" "os")func F() (int, string) { return 1, "o"}func ff(a int, s string) { fmt.Println(a) fmt.Println(s)}func f(p []byte) { p[1 阅读全文
摘要:
https://blog.csdn.net/www646288178/article/details/112218359 1、TLSv1.2 Handshake步骤: 在java8 JSSE中,TLSv1.2的handshake文档链接:https://docs.oracle.com/javase/ 阅读全文
摘要:
https://datatracker.ietf.org/doc/rfc5280/?include_text=1 https://tools.ietf.org/html/rfc5280 Certificate ::= SEQUENCE { tbsCertificate TBSCertificate, 阅读全文
摘要:
Miller–Rabin primality test - Wikipedia https://en.m.wikipedia.org/wiki/Miller–Rabin_primality_test Overview The Miller–Rabin primality test or Rabin– 阅读全文
摘要:
Bijection In mathematics, a bijection, bijective function, one-to-one correspondence, or invertible function, is a function between the elements of tw 阅读全文
摘要:
boost https://www.boost.org/ https://blog.csdn.net/vcforever/article/details/8858901 ar /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDef 阅读全文