02 2021 档案
摘要:cmake_minimum_required(VERSION 3.12)project(untitled16)set(CMAKE_CXX_STANDARD 14) add_definitions(-DAA=1) add_executable(untitled16 main.cpp) cmake_mi
阅读全文
摘要:摘要:在linux上用vim写C++的时候,通常用gdb进行调试,不能随心所欲的看代码和跳转代码以及加watch(也有可能是因为我还没有get正确的使用方法)。为此我发现Clion可以做到自动同步本场代码或自己下载远程代码同步到本地,以及调试在远程机器上运行的代码,为此记录下来。 简介 CLion
阅读全文
摘要:#include <stdio.h>#include <stdlib.h>static int * g_count = NULL;__attribute__((constructor)) void load_file(){ printf("Constructor is called.\n");}__
阅读全文
摘要:http://safe.it168.com/a2012/0912/1396/000001396884.shtml 从2003年开始,重要数据丢失已经成为严重的信息安全问题。尽管企业、机构和个人均不同程度地部署了保密措施,但泄密案例还是层出不穷。从近年来国内外公开发布的失泄密案件资料中,我们选择了以下
阅读全文
摘要:https://software.intel.com/content/www/us/en/develop/blogs/tpm2-software-stack-open-source.html https://www.mankier.com/package/tpm2-tools 引入了新近完成的Tru
阅读全文
摘要:使用autotools工具用configure、make、make install编译安装linux工程的详细步骤 tmxkwzy 2016-11-24 10:20:15 3714 收藏 2 autotools是个系列工具,主要由autoconf、automake、perl语言环境和m4等组成,所包
阅读全文
摘要:CertificateFactory certificateFactory = CertificateFactory.getInstance("X.509");KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());ke
阅读全文
摘要:https://crypto.stackexchange.com/questions/83226/iterations-of-pollards-kangaroo-attack-on-elliptic-curves Asked 6 months ago Active 5 months ago View
阅读全文
摘要:https://stackoverflow.com/questions/63871687/golang-build-cannot-find-module-for-path-mnt-c-xxxxx Golang build cannot find module for path _/mnt/c/XXX
阅读全文
摘要:https://www.jianshu.com/p/760c97ff644c https://studygolang.com/dl // https://goproxy.cn/github.com/ebitengine/purego/@v/list go mod tidy -compat=1.17
阅读全文
摘要:<servers>: <server> <id>releases</id> <username>admin</username> <password>admin123</password></server><server> <id>snapshots</id> <username>admin</us
阅读全文
摘要:https://tlu.tarilabs.com/cryptography/digital_signatures/introduction_schnorr_signatures.html 数字签名 比特币使用数字签名使硬币能够在区块链上转移。数字签名用于证明特定硬币的所有权,并授权将其转移给新的所有
阅读全文
摘要:https://www.sciencedirect.com/ https://pdf.sciencedirectassets.com/272498/1-s2.0-S1071579700X00433/1-s2.0-S1071579704000395/main.pdf?X-Amz-Security-To
阅读全文
摘要:A tale of two elliptic curves Posted on 21 August 2018 by John A few days ago I blogged about the elliptic curve secp256k1 and its use in Bitcoin. Thi
阅读全文
摘要: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
阅读全文