mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
d5e02eaa43
* change bls pairing engine * fix linter warnings * curve order * add back spec test * use only one dep * fix test * remove toBytes * gaz * add it back * fix tests * imports * imports * gaz * remove hash function * change naming * preston's comments * gaz * fix test failure * change back * revert test changes * gaz
65 lines
1.9 KiB
Go
65 lines
1.9 KiB
Go
package spectest
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/hex"
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/ghodss/yaml"
|
|
bls12 "github.com/kilic/bls12-381"
|
|
"github.com/prysmaticlabs/prysm/shared/bls"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
)
|
|
|
|
// Note: This actually tests the underlying library as we don't have a need for
|
|
// HashG2Compressed in our local BLS API.
|
|
func TestMsgHashCompressed(t *testing.T) {
|
|
testFolders, testFolderPath := testutil.TestFolders(t, "general", "bls/msg_hash_compressed/small")
|
|
|
|
for _, folder := range testFolders {
|
|
t.Run(folder.Name(), func(t *testing.T) {
|
|
file, err := testutil.BazelFileBytes(path.Join(testFolderPath, folder.Name(), "data.yaml"))
|
|
if err != nil {
|
|
t.Fatalf("Failed to read file: %v", err)
|
|
}
|
|
test := &MsgHashCompressedTest{}
|
|
if err := yaml.Unmarshal(file, test); err != nil {
|
|
t.Fatalf("Failed to unmarshal: %v", err)
|
|
}
|
|
|
|
msgBytes, err := hex.DecodeString(test.Input.Message[2:])
|
|
if err != nil {
|
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
|
}
|
|
domain, err := hex.DecodeString(test.Input.Domain[2:])
|
|
if err != nil {
|
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
|
}
|
|
g2 := bls12.NewG2(nil)
|
|
hash := bls.HashWithDomain(
|
|
bytesutil.ToBytes32(msgBytes),
|
|
bytesutil.ToBytes8(domain),
|
|
)
|
|
g2Point := g2.MapToPoint(hash)
|
|
compressedHash := g2.ToCompressed(g2Point)
|
|
|
|
var buf []byte
|
|
for _, innerString := range test.Output {
|
|
slice, err := hex.DecodeString(innerString[2:])
|
|
if err != nil {
|
|
t.Fatalf("Cannot decode string to bytes: %v", err)
|
|
}
|
|
buf = append(buf, slice...)
|
|
}
|
|
if !bytes.Equal(buf, compressedHash[:]) {
|
|
t.Logf("Domain=%d", domain)
|
|
t.Fatalf("Hash does not match the expected output. "+
|
|
"Expected %#x but received %#x", buf, compressedHash)
|
|
}
|
|
t.Logf("Success. Domain=%d", domain)
|
|
})
|
|
}
|
|
}
|