PKCS#11:密码设备与应用程序的密码学接口
Posted on October 13, 2023
密码学在信息安全中扮演着至关重要的角色。为了保护敏感信息、数字身份和网络通信的安全性,密码设备(如硬件安全模块HSM)与应用程序之间的安全通信和互操作性变得至关重要。PKCS#11(Public-Key Cryptography Standards #11)是一个密码学标准系列,定义了密码设备和应用程序之间的通用接口,本文将深入探讨PKCS#11的技术细节和应用。
[Read More]
go的GPM模型
Posted on October 13, 2023
Go的GPM模型(Goroutine, P, M)是一种用于管理并发执行的调度模型,有助于充分利用多核处理器,并提供高效的并发编程体验。以下是对GPM模型的详细介绍:
[Read More]
defer
Posted on October 11, 2023
关于类型推断,你想知道的都在这里
Posted on October 10, 2023
solidity 数据类型简介
Posted on October 9, 2023
1. solidity 简介
[Read More]
solidity 合约入门
Posted on October 9, 2023
Makefile 入门教程
Posted on October 9, 2023
Makefile 是一个非常强大的构建自动化工具,用于管理项目的编译、链接和其他构建任务。以下是一个详细的 Makefile 使用文档,包括基本概念、语法、示例和常见任务。
[Read More]
Go with Protobuf
Posted on October 8, 2023
Gossip in Hyperledger Fabric
Posted on October 8, 2023
1. Gossip协议基础
[Read More]
slices in Go 1.21
Posted on October 7, 2023
Go 1.21中新增的 slices包中提供了很多与切片相关的函数,适用于任意类型的切片。
[Read More]