上一页 1 2 3 4 5 6 ··· 57 下一页
摘要: A : 全局绝对符号。 a :本地绝对符号。 B : 全局 bss 符号。 b : 本地 bss 符号。 D : 全局数据符号。 d:本地数据符号。 f : 源文件名符号。 L:全局线程局部符号 (TLS)。 l:静态线程局部符号(TLS)。 T:全局文本符号。 t :本地文本符号。 U:未定义的符 阅读全文
posted @ 2024-08-07 15:51 zJanly 阅读(14) 评论(0) 推荐(0) 编辑
摘要: package aaimport ( "sync" "sync/atomic" _ "unsafe")const rwmutexMaxReaders = 1 << 30type RWMutex struct { w sync.Mutex // held if there are pending wr 阅读全文
posted @ 2024-08-05 15:42 zJanly 阅读(3) 评论(0) 推荐(0) 编辑
摘要: cmake_minimum_required(VERSION 3.10)project(untitled3)enable_language(CUDA)set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G")set(CMAKE_VERBOSE_MAKEFILE ON 阅读全文
posted @ 2024-08-04 08:43 zJanly 阅读(13) 评论(0) 推荐(0) 编辑
摘要: opt=-Wl,--no-undefined -Wl,-unresolved-symbols=ignore-in-shared-libsgcc $opt -shared -o libfa.so -g -O2 1.c -L. -laja,无符号数大于时,cf=0 zf=0 jae,无符号数大于等于时, 阅读全文
posted @ 2024-08-03 08:54 zJanly 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://blog.webp.se/golang-libvips-cgo-zh/ package main import ( "fmt" "github.com/ebitengine/purego" "runtime" ) func getSystemLibrary() string { sw 阅读全文
posted @ 2024-08-03 07:48 zJanly 阅读(28) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/informatics/p/18131941 https://13115299.s21i.faiusr.com/61/1/ABUIABA9GAAgtrO2nAYowtLrvwc.pdf 2023年中国商业密码行业研究报告 阅读全文
posted @ 2024-07-26 10:23 zJanly 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/apr15/article/details/133965768 在“数据安全概述”里面, 我们提到了安全多方计算SMPC(Secure multi-party computation)的技术。在这个计算里面代表是密码分享SS (secret sharing 阅读全文
posted @ 2024-07-22 15:20 zJanly 阅读(41) 评论(0) 推荐(0) 编辑
摘要: https://brilliant.org/wiki/eulers-criterion https://proofwiki.org/wiki/Euler%27s_Criterion/Quadratic_Residue https://mathweb.ucsd.edu/~apollack/8_305S 阅读全文
posted @ 2024-07-15 15:36 zJanly 阅读(3) 评论(0) 推荐(0) 编辑
摘要: package aaimport ( "crypto/elliptic" "github.com/ethereum/go-ethereum/crypto/secp256k1" "math/big" "sync" "testing")func TestName(t *testing.T) { wg : 阅读全文
posted @ 2024-07-15 10:40 zJanly 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.btcstudy.org/2021/12/08/schnorr-applications-threshold-signatures/ https://www.btcstudy.org/2021/12/06/schnorr-applications-batch-verifica 阅读全文
posted @ 2024-07-11 16:59 zJanly 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 57 下一页