上传者: 42164931
|
上传时间: 2021-10-22 22:23:16
|
文件大小: 392KB
|
文件类型: -
默克尔
通过自己的作品, ,
用法
package main
import (
"crypto/sha256"
"log"
"os"
"github.com/wilfreddenton/merkle"
)
func main() {
// create a hash function
// it's ok to resuse this in merkle calls because it will be reset after use
h := sha256.New()
// create an io.Reader
f, err := os.Open("main.go"