mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2024-12-22 19:50:34 +00:00
Merge pull request #125 from ethereum/bls_v4
Bump py-ecc to v5.0.0 (IETF BLS standard draft 04)
This commit is contained in:
commit
094a4f786b
@ -1,6 +1,6 @@
|
||||
py-ecc==4.0.0 \
|
||||
--hash=sha256:0712a1ebc2d45417088aa613f28518c1714c99d023998e50244c91e3acbb0d6c \
|
||||
--hash=sha256:a637edcce7e31ddefae0a3c1018f16e25c9428fcd524b1ac5ceeb2adfc433276
|
||||
py-ecc==5.0.0 \
|
||||
--hash=sha256:67a6b944722408c75bb630617dfbd8062c45b72d154ed3a6891c833717c87638 \
|
||||
--hash=sha256:9d3c7ba607ef36d7f8af9944d702799014b27fc77b385d14024f96f9f610ad0a
|
||||
pycryptodome==3.9.8 \
|
||||
--hash=sha256:02e51e1d5828d58f154896ddfd003e2e7584869c275e5acbe290443575370fba \
|
||||
--hash=sha256:03d5cca8618620f45fd40f827423f82b86b3a202c8d44108601b0f5f56b04299 \
|
||||
|
@ -17,7 +17,6 @@ with open(test_vector_filefolder, 'r') as f:
|
||||
test_vectors = json.load(f)['kdf_tests']
|
||||
|
||||
|
||||
@pytest.mark.skip(reason="py_ecc doesn't support BLS v4 yet")
|
||||
@pytest.mark.parametrize(
|
||||
'test',
|
||||
test_vectors
|
||||
@ -27,7 +26,6 @@ def test_hkdf_mod_r(test) -> None:
|
||||
assert bls.KeyGen(seed) == _HKDF_mod_r(IKM=seed)
|
||||
|
||||
|
||||
@pytest.mark.skip(reason="py_ecc doesn't support BLS v4 yet")
|
||||
@pytest.mark.parametrize(
|
||||
'seed',
|
||||
[b'\x00' * 32]
|
||||
|
Loading…
Reference in New Issue
Block a user