Sun Yimin
Sun Yimin
我们有时候需要集成trace tool,比如OpenTelemetry,来跟踪阿里服务的请求响应情况,但是目前所有API的Request都没有context.Context参数,难以做到per request trace。当然,如果可以做到和OpenTelemetry集成的内置支持就更好了。
We integrated application insights with a service (apigee microgateway) , this service used **nodejs 8.3.0**, **applicationInsights-nodejs 1.7.0**. we found that the service's memory is growing as time goes on. We...
We found the HTTP dependency (access external API via proxy)'s event name as below  You can see that the name displayed as 443.   We used **1.4.0**. And...
All are CBC mode currently . https://github.com/emmansun/pkcs8/commit/03589b651ae5fe1fbfd7f1c6deadfa1347022af3
1. change interface{} to any gofmt -w -r 'interface{} -> any' ./... 1. remove "+build" tag go fix -fix=buildtag
https://github.com/golang/go/commit/2de2f6df64a8fff36fe9752f893a7cfff4590762 Adds a new, cryptobyte based, CRL parser, which returns a x509.RevocaitonList, rather than a pkix.CertificateList. This allows us to return much more detailed information, as well as leaving open...
这个语言特性是**golang 1.17**引入的,目前只能用以下代码代替: ```golang // toElementArray, convert slice of bytes to pointer to [32]byte. // This function is required for low version of golang, can type cast directly // since golang...
amd64/arm64使用指针: ```golang //go:noescape func xorBytes(dst, a, b *byte, n int) ``` 而generic实现使用切片: ```golang // fastXORBytes xors in bulk. It only works on architectures that // support unaligned read/writes. // n...
TLCP中ECDHE_SM4_GCM_SM3/ECDHE_SM4_CBC_SM3,使用SM2 key exchange生成的到底是预主密钥还是主密钥? 如果是预主密钥,长度是多少?这个在**GB/T 38636-2020**也没有看到详细信息。
Creates x509.RevocationListEntry, a new type representing a single revoked certificate entry in a CRL. Like the existing Certificate and RevocationList types, this new type has a field for its Raw...