mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-03-09 18: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
16 lines
301 B
Go
16 lines
301 B
Go
// -*- go -*-
|
|
|
|
package main
|
|
|
|
import (
|
|
"crypto/sha512"
|
|
)
|
|
|
|
// @Hex
|
|
// @LSB
|
|
// @Test 0 0 = 0xcf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e
|
|
func main(g, e byte) []byte {
|
|
var data [0]byte
|
|
return sha512.Sum512(data[:])
|
|
}
|