上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 57 下一页
摘要: GO 使用静态链接库编译 生成可执行文件 使用第三方 .a 文件,无源码构造 go build 和 go install 都需要使用源码来进行编译。但是有时候我们只有.a或者.so文件。并不能获取到第三方库的源码,这时我们需要静态链接库编译的技巧; 上图是实验前的文件分布。 使用静态链接库编译命令: 阅读全文
posted @ 2021-02-04 15:09 zJanly 阅读(101) 评论(0) 推荐(0) 编辑
摘要: http://safecurves.cr.yp.to/equation.html choosing safe curves for elliptic-curve cryptography Introduction Curve parameters: Fields Equations Base poi 阅读全文
posted @ 2021-02-02 18:45 zJanly 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-01-14 20:59 zJanly 阅读(83) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/www646288178/article/details/112218359 1、TLSv1.2 Handshake步骤: 在java8 JSSE中,TLSv1.2的handshake文档链接:https://docs.oracle.com/javase/ 阅读全文
posted @ 2021-01-14 20:02 zJanly 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: https://datatracker.ietf.org/doc/rfc5280/?include_text=1 https://tools.ietf.org/html/rfc5280 Certificate ::= SEQUENCE { tbsCertificate TBSCertificate, 阅读全文
posted @ 2021-01-13 18:43 zJanly 阅读(221) 评论(0) 推荐(0) 编辑
摘要: Miller–Rabin primality test - Wikipedia https://en.m.wikipedia.org/wiki/Miller–Rabin_primality_test Overview The Miller–Rabin primality test or Rabin– 阅读全文
posted @ 2021-01-13 18:42 zJanly 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Bijection In mathematics, a bijection, bijective function, one-to-one correspondence, or invertible function, is a function between the elements of tw 阅读全文
posted @ 2021-01-08 10:50 zJanly 阅读(121) 评论(0) 推荐(0) 编辑
摘要: boost https://www.boost.org/ https://blog.csdn.net/vcforever/article/details/8858901 ar /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDef 阅读全文
posted @ 2021-01-05 10:50 zJanly 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 主要介绍rust-crypto和tiny-keccak这两个Rust实现的密码学库。 rust-crypto Rust实现的密码学库,包含了密码学中常用的对称密码、公钥密码、单向散列函数、消息认证码、数字签名、随机数生成器等算法。目前支持以下算法: NameDescription AES 高级加密标 阅读全文
posted @ 2020-12-31 14:28 zJanly 阅读(2922) 评论(0) 推荐(0) 编辑
摘要: https://cardwerk.com/iso-7816-part-3/ https://wenku.baidu.com/view/580d28b7162ded630b1c59eef8c75fbfc67d9476.html 阅读全文
posted @ 2020-12-31 14:09 zJanly 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 57 下一页