Go實現Pow工作量證明

failymao發表於2018-07-11

之前使用python編寫了一段程式碼實現了工作量證明機制,近期由於參與以太坊智慧合約開發錢包的工作接觸到golang語言,所以藉此以go來實現Pow(Proof of work).

  • 實現程式碼如下:

    // pow 工作量證明
    package main
    import (
        "crypto/sha256"
        "fmt"
        "strconv"
        "time"
    )
    
    func main() {
        c := PowProcess("Haxima")
        fmt.Println(c)
    }
    
    /* Pow working process
    設定條件:當hash後的值滿足特定條件
    */
    
    func PowProcess(x string) string {
        var i int
        t1 := time.Now().UnixNano()
        for i = 0; (HashString(x + strconv.Itoa(i)))[:4] != "0000"; i ++ {
            fmt.Println(i)
        }
    
        fmt.Println(i)
        fmt.Printf("Duration:%.3fs
    ", float64((time.Now().UnixNano()-t1)/1e6)/1000)
        return HashString(x + strconv.Itoa(i))
    }
    
    /* hash函式
    params: available_str string ---> pre hash blockchain
    */
    func HashString(available_str string) string {
        h := sha256.New()
        h.Write([]byte(available_str))
        return fmt.Sprintf("%x", h.Sum(nil))
    }
    
    
    func main() {
        c := PowProcess("Haxima")
        fmt.Println(c)
    }
    
    /*執行結果
    i--->   1
    i--->   2
    i ...
    i--->   99110
    i--->   99111
    Duration:1.570s
    000063d6789a2f7d7f26157cdc38f82c67e52ddda8d6c4e1bf2a3bc4717737ae
    */

執行程式碼可知 :當PowProcess函式條件設定越苛刻(即0的個數越多),其工作量難度越大,CPU在計算時耗費的時間越長

相關文章