11 2020 档案
摘要:https://opensource.apple.com/source/
阅读全文
摘要:https://cr.yp.to/papers.html#cachetiming
阅读全文
摘要:in GF(p), i.e., they are performed modulo p. The constant a24 is (486662 - 2) / 4 = 121665 for curve25519/X25519 and (156326 - 2) / 4 = 39081 for curv
阅读全文
摘要:func F(d int, s string) { fmt.Println(s) fmt.Println(d)} go build -gcflags="all=-N -l" -buildmode=plugin 2.go go build -ldflags='-s -w' . https://gith
阅读全文
摘要:A bilinear pairing is a map e : G1 × G2 → G3 where G1, G2 are additive groups, G3 is a multiplicative group, and the map is linear in each component:
阅读全文
摘要:https://blog.qualys.com/product-tech/2012/09/14/crime-information-leakage-attack-against-ssltls http://commandlinefanatic.com/cgi-bin/showarticle.cgi?
阅读全文
摘要:http://www.52im.net/thread-1107-1-1.html https://www.cnblogs.com/imteck4713/p/11777310.html
阅读全文
摘要:https://thenewstack.io/the-best-public-and-private-keygen-algorithm-and-why/ The Best Public and Private Keygen Algorithm — and Why 12 Nov 2020 10:00a
阅读全文
摘要:https://www.nayuki.io/page/elliptic-curve-point-addition-in-projective-coordinates Introduction Elliptic curves are a mathematical concept that is use
阅读全文
摘要:https://rosettacode.org/wiki/Random_number_generator_(included) The task is to: State the type of random number generator algorithm used in a language
阅读全文
摘要:https://crypto.stackexchange.com/questions/8687/security-strength-of-rsa-in-relation-with-the-modulus-size 这是GNFS的复杂性(摘自链接的Wikipedia文章): 哪里 𝑛ñ是要考虑的数字
阅读全文
摘要:blog https://access.redhat.com/blogs/766093/posts/1976703 RSA签名和加密方案:RSA-PSS和RSA-OAEP 在[ PKCS1 ]中指定了两种RSA签名方案:RSASSA-PKCS1-v1_5和RSASSA-PSS。 RSASSA-PSS
阅读全文
摘要:Windows下更换镜像源 打开用户目录 %Users/${username}/% , 如(C:/Users/用户名/), 在此目录下创建 pip 文件夹 在 pip 目录下创建 pip.ini 文件, 内容如下 [global]timeout = 6000index-url = https://p
阅读全文
摘要:https://blog.csdn.net/lbc2100/article/details/79640554 静态代码安全扫描工具Cobra 业务大了,代码多了,自然公司就有了代码审计的需求,因此需要找一款代码审计的工具软件。 眼镜蛇(Cobra)是一款定位于静态代码安全分析的工具,目标是为了找出源
阅读全文
摘要:https://github.com/ix64/unlock-music
阅读全文
摘要:In today’s business world, the encryption of an organization’s sensitive data-at-rest must now be a fundamental component to any successful cyber secu
阅读全文
摘要:Arm vs x86:指令集,体系结构和所有主要差异说明 2.5K 罗伯特·特里格斯 Android能够在三种不同类型的处理器架构上运行:Arm,Intel和MIPS。在英特尔放弃了其手机CPU之后,前者是当今无处不在的体系结构,而用于手机的MIPS处理器已有多年历史了。Arm是Android和Ap
阅读全文
摘要:ARM与X86之间的区别 下面的文章概述了ARM与X86。X86指的是从8086开始的Intel处理器家族,后来发布了80186、80286、80386、80486,Pentium和Xeon等。X86中的mber 86表示其较早处理器的后两位。ARM最初由ARM Holdings最初称为Acorn
阅读全文
摘要:2005年10月在通报其汽车预警灯毫无理由的点亮和汽油发动机出现不可预 见的延迟之后,丰田制造商宣布召回他的160,000辆Prius hybrid混合动力汽车。但和去年大规模的召回汽车不同,Prius hybrid的根本问题不是硬件问题——而是智能型汽车的软件出了故障。Prius hybrid汽车
阅读全文
摘要:func main() { { a := 100; b := 6; q := 0; r := a; for ;r >= b; { r -= b; q++; } fmt.Println(q) fmt.Println(r) } d := new(big.Int).SetInt64(100) d.Lsh(
阅读全文
摘要:String hello = "GET / HTTP/1.1\r\nHost: sm2test.ovssl.cn:443\r\nUser-Agent: Mozilla/5.0\r\nAccept: */*\r\n\r\n";
阅读全文
摘要:#include <wincrypt.h> void f(){ HCRYPTPROV hProv = 0; // Get a handle to the default PROV_RSA_FULL provider. if(!CryptAcquireContext(&hProv, NULL, NUL
阅读全文
摘要:一、运行class文件 执行带main方法的class文件,命令行为:java <CLASS文件名>注意:CLASS文件名不要带文件后缀.class 例如: 复制代码代码如下: java Test 如果执行的class文件是带包的,即在类文件中使用了:package <包名> 那应该在包的基路径下执
阅读全文
摘要:英文文献中,我们常会看到e.g.和i.e.。他们都是拉丁文的缩写。E.g. 代表的是exempli gratia,取首字母后面用省略点代替就成了e.g.,意思是:例如。I.e.是id est的缩写,取首字母后面用点代替,就成了i.e.,意思是:即(换句话说)。 可是我们写英文论文为什么要用拉丁文呢?
阅读全文
摘要:Public Key Infrastructure (PKI) provides the means to establish trust by binding public keys and identities, thus giving reasonable assurance that we’
阅读全文
摘要:AES加密算法中五种模式的差异 最近,我与泽田先生在TDE上做了一些工作。所以我研究了加密算法。到目前为止,我研究了AES中的五种模式。在本文档中,我将介绍五种模式的差异。 一般 分组密码是用于加密或解密的方案,其中,将明文分组视为单个分组,并用于获取具有相同大小的密文分组。如今,AES(高级加密标
阅读全文
摘要:http://jdk.java.net/java-se-ri/8-MR3 https://adoptopenjdk.net/index.html?variant=openjdk8&jvmVariant=hotspot https://learn.microsoft.com/zh-cn/java/op
阅读全文