mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
18 lines
277 B
Go
18 lines
277 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
)
|
|
|
|
// @Hex
|
|
// @Test 0 0 = 0x1fd35a2a9e6f530dd6e5e87075c4d98ebb2960e2b65085cddeae2f65853a3af
|
|
func main(g, e byte) []byte {
|
|
var data [50]byte
|
|
data[0] = 0x6d
|
|
data[1] = 0x74
|
|
data[2] = 0x72
|
|
return sha256.Sum256(data[:])
|
|
}
|