forked from cerc-io/plugeth
crypto/kzg4844: do lazy init in all ckzg funcs (#27679)
* crypto/kzg4844: remove unnecessary init call & fix typo * Fix kzg4844 tests/benchmarks * Make init lazy & revert changes to tests
This commit is contained in:
parent
a196f3e8a2
commit
2274a03e33
@ -54,7 +54,7 @@ func UseCKZG(use bool) error {
|
|||||||
useCKZG.Store(use)
|
useCKZG.Store(use)
|
||||||
|
|
||||||
// Initializing the library can take 2-4 seconds - and can potentially crash
|
// Initializing the library can take 2-4 seconds - and can potentially crash
|
||||||
// on CKZG and non-ADX CPUs - so might as well so it now and don't wait until
|
// on CKZG and non-ADX CPUs - so might as well do it now and don't wait until
|
||||||
// a crypto operation is actually needed live.
|
// a crypto operation is actually needed live.
|
||||||
if use {
|
if use {
|
||||||
ckzgIniter.Do(ckzgInit)
|
ckzgIniter.Do(ckzgInit)
|
||||||
|
@ -74,6 +74,8 @@ func ckzgBlobToCommitment(blob Blob) (Commitment, error) {
|
|||||||
// ckzgComputeProof computes the KZG proof at the given point for the polynomial
|
// ckzgComputeProof computes the KZG proof at the given point for the polynomial
|
||||||
// represented by the blob.
|
// represented by the blob.
|
||||||
func ckzgComputeProof(blob Blob, point Point) (Proof, Claim, error) {
|
func ckzgComputeProof(blob Blob, point Point) (Proof, Claim, error) {
|
||||||
|
ckzgIniter.Do(ckzgInit)
|
||||||
|
|
||||||
proof, claim, err := ckzg4844.ComputeKZGProof((ckzg4844.Blob)(blob), (ckzg4844.Bytes32)(point))
|
proof, claim, err := ckzg4844.ComputeKZGProof((ckzg4844.Blob)(blob), (ckzg4844.Bytes32)(point))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Proof{}, Claim{}, err
|
return Proof{}, Claim{}, err
|
||||||
@ -84,6 +86,8 @@ func ckzgComputeProof(blob Blob, point Point) (Proof, Claim, error) {
|
|||||||
// ckzgVerifyProof verifies the KZG proof that the polynomial represented by the blob
|
// ckzgVerifyProof verifies the KZG proof that the polynomial represented by the blob
|
||||||
// evaluated at the given point is the claimed value.
|
// evaluated at the given point is the claimed value.
|
||||||
func ckzgVerifyProof(commitment Commitment, point Point, claim Claim, proof Proof) error {
|
func ckzgVerifyProof(commitment Commitment, point Point, claim Claim, proof Proof) error {
|
||||||
|
ckzgIniter.Do(ckzgInit)
|
||||||
|
|
||||||
valid, err := ckzg4844.VerifyKZGProof((ckzg4844.Bytes48)(commitment), (ckzg4844.Bytes32)(point), (ckzg4844.Bytes32)(claim), (ckzg4844.Bytes48)(proof))
|
valid, err := ckzg4844.VerifyKZGProof((ckzg4844.Bytes48)(commitment), (ckzg4844.Bytes32)(point), (ckzg4844.Bytes32)(claim), (ckzg4844.Bytes48)(proof))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -99,6 +103,8 @@ func ckzgVerifyProof(commitment Commitment, point Point, claim Claim, proof Proo
|
|||||||
//
|
//
|
||||||
// This method does not verify that the commitment is correct with respect to blob.
|
// This method does not verify that the commitment is correct with respect to blob.
|
||||||
func ckzgComputeBlobProof(blob Blob, commitment Commitment) (Proof, error) {
|
func ckzgComputeBlobProof(blob Blob, commitment Commitment) (Proof, error) {
|
||||||
|
ckzgIniter.Do(ckzgInit)
|
||||||
|
|
||||||
proof, err := ckzg4844.ComputeBlobKZGProof((ckzg4844.Blob)(blob), (ckzg4844.Bytes48)(commitment))
|
proof, err := ckzg4844.ComputeBlobKZGProof((ckzg4844.Blob)(blob), (ckzg4844.Bytes48)(commitment))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Proof{}, err
|
return Proof{}, err
|
||||||
@ -108,6 +114,8 @@ func ckzgComputeBlobProof(blob Blob, commitment Commitment) (Proof, error) {
|
|||||||
|
|
||||||
// ckzgVerifyBlobProof verifies that the blob data corresponds to the provided commitment.
|
// ckzgVerifyBlobProof verifies that the blob data corresponds to the provided commitment.
|
||||||
func ckzgVerifyBlobProof(blob Blob, commitment Commitment, proof Proof) error {
|
func ckzgVerifyBlobProof(blob Blob, commitment Commitment, proof Proof) error {
|
||||||
|
ckzgIniter.Do(ckzgInit)
|
||||||
|
|
||||||
valid, err := ckzg4844.VerifyBlobKZGProof((ckzg4844.Blob)(blob), (ckzg4844.Bytes48)(commitment), (ckzg4844.Bytes48)(proof))
|
valid, err := ckzg4844.VerifyBlobKZGProof((ckzg4844.Blob)(blob), (ckzg4844.Bytes48)(commitment), (ckzg4844.Bytes48)(proof))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -47,7 +47,6 @@ func randBlob() Blob {
|
|||||||
|
|
||||||
func TestCKZGWithPoint(t *testing.T) { testKZGWithPoint(t, true) }
|
func TestCKZGWithPoint(t *testing.T) { testKZGWithPoint(t, true) }
|
||||||
func TestGoKZGWithPoint(t *testing.T) { testKZGWithPoint(t, false) }
|
func TestGoKZGWithPoint(t *testing.T) { testKZGWithPoint(t, false) }
|
||||||
|
|
||||||
func testKZGWithPoint(t *testing.T, ckzg bool) {
|
func testKZGWithPoint(t *testing.T, ckzg bool) {
|
||||||
if ckzg && !ckzgAvailable {
|
if ckzg && !ckzgAvailable {
|
||||||
t.Skip("CKZG unavailable in this test build")
|
t.Skip("CKZG unavailable in this test build")
|
||||||
@ -73,7 +72,6 @@ func testKZGWithPoint(t *testing.T, ckzg bool) {
|
|||||||
|
|
||||||
func TestCKZGWithBlob(t *testing.T) { testKZGWithBlob(t, true) }
|
func TestCKZGWithBlob(t *testing.T) { testKZGWithBlob(t, true) }
|
||||||
func TestGoKZGWithBlob(t *testing.T) { testKZGWithBlob(t, false) }
|
func TestGoKZGWithBlob(t *testing.T) { testKZGWithBlob(t, false) }
|
||||||
|
|
||||||
func testKZGWithBlob(t *testing.T, ckzg bool) {
|
func testKZGWithBlob(t *testing.T, ckzg bool) {
|
||||||
if ckzg && !ckzgAvailable {
|
if ckzg && !ckzgAvailable {
|
||||||
t.Skip("CKZG unavailable in this test build")
|
t.Skip("CKZG unavailable in this test build")
|
||||||
@ -106,6 +104,8 @@ func benchmarkBlobToCommitment(b *testing.B, ckzg bool) {
|
|||||||
useCKZG.Store(ckzg)
|
useCKZG.Store(ckzg)
|
||||||
|
|
||||||
blob := randBlob()
|
blob := randBlob()
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
BlobToCommitment(blob)
|
BlobToCommitment(blob)
|
||||||
}
|
}
|
||||||
@ -124,6 +124,8 @@ func benchmarkComputeProof(b *testing.B, ckzg bool) {
|
|||||||
blob = randBlob()
|
blob = randBlob()
|
||||||
point = randFieldElement()
|
point = randFieldElement()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
ComputeProof(blob, point)
|
ComputeProof(blob, point)
|
||||||
}
|
}
|
||||||
@ -144,6 +146,8 @@ func benchmarkVerifyProof(b *testing.B, ckzg bool) {
|
|||||||
commitment, _ = BlobToCommitment(blob)
|
commitment, _ = BlobToCommitment(blob)
|
||||||
proof, claim, _ = ComputeProof(blob, point)
|
proof, claim, _ = ComputeProof(blob, point)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
VerifyProof(commitment, point, claim, proof)
|
VerifyProof(commitment, point, claim, proof)
|
||||||
}
|
}
|
||||||
@ -162,6 +166,8 @@ func benchmarkComputeBlobProof(b *testing.B, ckzg bool) {
|
|||||||
blob = randBlob()
|
blob = randBlob()
|
||||||
commitment, _ = BlobToCommitment(blob)
|
commitment, _ = BlobToCommitment(blob)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
ComputeBlobProof(blob, commitment)
|
ComputeBlobProof(blob, commitment)
|
||||||
}
|
}
|
||||||
@ -181,6 +187,8 @@ func benchmarkVerifyBlobProof(b *testing.B, ckzg bool) {
|
|||||||
commitment, _ = BlobToCommitment(blob)
|
commitment, _ = BlobToCommitment(blob)
|
||||||
proof, _ = ComputeBlobProof(blob, commitment)
|
proof, _ = ComputeBlobProof(blob, commitment)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
VerifyBlobProof(blob, commitment, proof)
|
VerifyBlobProof(blob, commitment, proof)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user