ceremonyclient/bedlam/testsuite/crypto/sha512_test_.qcl
Cassandra Heart dbd95bd9e9
v2.1.0 (#439)
* 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
2025-09-30 02:48:15 -05:00

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[:])
}