mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
f0e2f561d5
* remove herumi * gaz * deprecate flag * remove source builds of herumi * remove * Revert "remove source builds of herumi" This reverts commit ac7dd133eddcd9ab27d7d75e19efabd994b89d3c. * disable blst * remove herumi hard requirement from fuzz * restrict viz, ensure all deps removed from fuzz * remove source builds * add back opts * add back herumi initialization * Revert "add back opts" This reverts commit ad9b409b8ad2410142efba92e71c555fedb2a29e. * Revert "remove source builds" This reverts commit b78ee30dba1befad24262648e2fde1583263c87d. * Revert "restrict viz, ensure all deps removed from fuzz" This reverts commit 65d951da93103eb327643c3c167ae7498955d244. * Revert "remove herumi hard requirement from fuzz" This reverts commit ad92191d8146bf7fea4508fb99a1ae9267683f6d. * redundant * add lock for rand generation Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
31 lines
866 B
Go
31 lines
866 B
Go
package bls
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/bls/common"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func TestDisallowZeroSecretKeys(t *testing.T) {
|
|
t.Run("blst", func(t *testing.T) {
|
|
// Blst does a zero check on the key during deserialization.
|
|
_, err := SecretKeyFromBytes(common.ZeroSecretKey[:])
|
|
require.Equal(t, common.ErrSecretUnmarshal, err)
|
|
})
|
|
}
|
|
|
|
func TestDisallowZeroPublicKeys(t *testing.T) {
|
|
t.Run("blst", func(t *testing.T) {
|
|
_, err := PublicKeyFromBytes(common.InfinitePublicKey[:])
|
|
require.Equal(t, common.ErrInfinitePubKey, err)
|
|
})
|
|
}
|
|
|
|
func TestDisallowZeroPublicKeys_AggregatePubkeys(t *testing.T) {
|
|
t.Run("blst", func(t *testing.T) {
|
|
_, err := AggregatePublicKeys([][]byte{common.InfinitePublicKey[:], common.InfinitePublicKey[:]})
|
|
require.Equal(t, common.ErrInfinitePubKey, err)
|
|
})
|
|
}
|