• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    使用go实现简易比特币区块链公链功能

    使用go语言实现具备以下功能的简易区块链

    由于平时还要进行论文工作,项目不定时更新

    2021.1.1实现了区块结构、区块链结构、工作量证明pow,剩下部分陆续更新

    1.实现区块结构

    package BLC
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"time"
    )
    
    //实现一个最基本的区块结构
    type Block struct {
    	TimeStamp int64 //时间戳,区块产生的时间
    	Heigth int64//区块高度(索引、号码)代表当前区块的高度
    	PreBlockHash []byte//前一个区块(父区块)的哈希
    	Hash []byte//当前区块的哈希
    	Data []byte//交易数据
    }
    //创建一个新的区块
    func NewBlock(height int64,preBlockHash []byte,Data []byte) *Block {
    	var block Block
    	block=Block{Heigth: height,PreBlockHash: preBlockHash,Data: Data,TimeStamp: time.Now().Unix()}
    	block.SetHash()
    	return block
    }
    //计算区块哈希
    func (b *Block)SetHash() { 
    	//int64转换成字节数组
    	//高度转换
    	heightBytes:=IntToHex(b.Heigth)
    	//时间转换
    	timeStampBytes:=IntToHex(b.TimeStamp)
    //拼接所有属性进行hash
    	blockBytes:=bytes.Join([][]byte{heightBytes,timeStampBytes,b.PreBlockHash,b.Data},[]byte{})
    	hash:=sha256.Sum256(blockBytes)
    	b.Hash=hash[:]
    }

    2.实现区块链结构

    package BLC
    
    type BlockChain struct {
    	Blocks []*Block //存储有序的区块
    }
    //初始化区块链
    func CreateBlockChainWithGenesisBlock() *BlockChain {
    	//添加创世区块
    	genesisBlock:=CreateGenesisBlock("the init of blockchain")
    
    	return BlockChain{[]*Block{genesisBlock}}
    }
    //添加新的区块到区块链中
    func (bc *BlockChain)AddBlock(height int64,data []byte,prevBlockHash []byte){
    	newBlock := NewBlock(height,prevBlockHash,data)
    	bc.Blocks=append(bc.Blocks,newBlock)
    }

    3.实现工作量证明

    package BLC
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"fmt"
    	"math/big"
    )
    
    //目标难度值,生成的hash前 targetBit 位为0才满足条件
    const targetBit =16
    //工作量证明
    type ProofOfWork struct {
    	Block *Block //对指定的区块进行验证
    	target *big.Int //大数据存储
    }
    //创建新的pow对象
    func NewProofOfWork(block *Block) *ProofOfWork {
    	target:=big.NewInt(1)
    	target=target.Lsh(target,256-targetBit)
    	return ProofOfWork{block,target}
    }
    //开始工作量证明
    func (proofOfWork *ProofOfWork)Run() ([]byte,int64) {
    	//数据拼接
    	var nonce=0 //碰撞次数
    	var hash [32]byte //生成的hash
    	var hashInt big.Int //存储转换后的hash
    	for {
    		dataBytes:=proofOfWork.prepareData(nonce)
    		hash=sha256.Sum256(dataBytes)
    		hashInt.SetBytes(hash[:])
    		fmt.Printf("hash:\r%x",hash)
    		//难度比较
    		if proofOfWork.target.Cmp(hashInt)==1{
    			break
    		}
    		nonce++
    	}
    	fmt.Printf("碰撞次数:%d\n",nonce)
    	return hash[:],int64(nonce)
    }
    //准备数据,将区块属性拼接起来,返回字节数组
    func (pow *ProofOfWork)prepareData(nonce int) []byte {
    	data:=bytes.Join([][]byte{
    		pow.Block.PreBlockHash,
    		pow.Block.Data,
    		IntToHex(pow.Block.TimeStamp),
    		IntToHex(pow.Block.Heigth),
    		IntToHex(int64(nonce)),
    		IntToHex(targetBit),
    	},[]byte{})
    	return data
    }

    4.当前运行结果

    到此这篇关于使用go实现简易比特币区块链公链功能的文章就介绍到这了,更多相关go实现比特币区块链公链内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • go语言实现简易比特币系统钱包的原理解析
    • Go语言实现IP段范围校验示例
    • Django之form组件自动校验数据实现
    • golang之数据校验的实现代码示例
    • Django框架登录加上验证码校验实现验证功能示例
    • go语言实现简易比特币系统之交易签名及校验功能
    上一篇:Go基于GORM 获取当前请求所执行的 SQL 信息(思路详解)
    下一篇:GO语言开发环境搭建过程图文详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    使用go实现简易比特币区块链公链功能 使用,实现,简易,比特,币,