mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-23 03:17:25 +08:00
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[:])
|
|
}
|