From dcd7cb3b6c55bf3661309901e6dd5e0923686ce6 Mon Sep 17 00:00:00 2001 From: Youssef El Housni Date: Thu, 9 Jan 2025 15:02:32 -0500 Subject: [PATCH] docs: Change copyright year to 2025 (not autogenerated) (#1388) --- backend/backend.go | 2 +- backend/groth16/groth16.go | 2 +- backend/plonk/plonk.go | 2 +- backend/witness/witness.go | 2 +- constraint/linear_expression.go | 2 +- constraint/log.go | 2 +- constraint/r1cs.go | 2 +- constraint/r1cs_sparse.go | 2 +- constraint/term.go | 2 +- examples/cubic/cubic.go | 2 +- examples/cubic/cubic_test.go | 2 +- examples/exponentiate/exponentiate.go | 2 +- examples/exponentiate/exponentiate_test.go | 2 +- examples/mimc/mimc.go | 2 +- examples/mimc/mimc_test.go | 2 +- examples/plonk/main.go | 2 +- examples/rollup/account.go | 2 +- examples/rollup/account_test.go | 2 +- examples/rollup/circuit.go | 2 +- examples/rollup/circuit_test.go | 2 +- examples/rollup/error.go | 2 +- examples/rollup/operator.go | 2 +- examples/rollup/rollup_test.go | 2 +- examples/rollup/transfer.go | 2 +- frontend/api.go | 2 +- frontend/circuit.go | 2 +- frontend/cs/r1cs/api.go | 2 +- frontend/cs/r1cs/api_assertions.go | 2 +- frontend/cs/r1cs/builder.go | 2 +- frontend/cs/r1cs/r1cs_test.go | 2 +- frontend/cs/scs/api.go | 2 +- frontend/cs/scs/api_assertions.go | 2 +- frontend/cs/scs/builder.go | 2 +- frontend/schema/field.go | 2 +- frontend/schema/schema.go | 2 +- frontend/schema/schema_test.go | 2 +- frontend/variable.go | 2 +- integration_test.go | 2 +- internal/utils/convert.go | 2 +- internal/utils/convert_test.go | 2 +- io/io.go | 2 +- std/accumulator/merkle/verify.go | 2 +- std/accumulator/merkle/verify_test.go | 2 +- std/algebra/native/fields_bls12377/e12.go | 2 +- std/algebra/native/fields_bls12377/e12_test.go | 2 +- std/algebra/native/fields_bls12377/e2.go | 2 +- std/algebra/native/fields_bls12377/e2_test.go | 2 +- std/algebra/native/fields_bls12377/e6.go | 2 +- std/algebra/native/fields_bls12377/e6_test.go | 2 +- std/algebra/native/fields_bls24315/e12.go | 2 +- std/algebra/native/fields_bls24315/e12_test.go | 2 +- std/algebra/native/fields_bls24315/e2.go | 2 +- std/algebra/native/fields_bls24315/e24.go | 2 +- std/algebra/native/fields_bls24315/e24_test.go | 2 +- std/algebra/native/fields_bls24315/e2_test.go | 2 +- std/algebra/native/fields_bls24315/e4.go | 2 +- std/algebra/native/fields_bls24315/e4_test.go | 2 +- std/algebra/native/sw_bls12377/g1.go | 2 +- std/algebra/native/sw_bls12377/g1_test.go | 2 +- std/algebra/native/sw_bls12377/g2.go | 2 +- std/algebra/native/sw_bls12377/g2_test.go | 2 +- std/algebra/native/sw_bls12377/pairing.go | 2 +- std/algebra/native/sw_bls12377/pairing_test.go | 2 +- std/algebra/native/sw_bls12377/precomputations.go | 2 +- std/algebra/native/sw_bls24315/g1.go | 2 +- std/algebra/native/sw_bls24315/g1_test.go | 2 +- std/algebra/native/sw_bls24315/g2.go | 2 +- std/algebra/native/sw_bls24315/g2_test.go | 2 +- std/algebra/native/sw_bls24315/pairing.go | 2 +- std/algebra/native/sw_bls24315/pairing_test.go | 2 +- std/algebra/native/sw_bls24315/precomputations.go | 2 +- std/algebra/native/twistededwards/curve_test.go | 2 +- std/algebra/native/twistededwards/point.go | 2 +- std/algebra/native/twistededwards/twistededwards.go | 2 +- std/fiat-shamir/transcript.go | 2 +- std/fiat-shamir/transcript_test.go | 2 +- std/hash/hash.go | 2 +- std/hash/mimc/encrypt.go | 2 +- std/hash/mimc/mimc.go | 2 +- std/hash/mimc/mimc_test.go | 2 +- std/signature/eddsa/eddsa_test.go | 2 +- test/assert.go | 2 +- test/doc.go | 2 +- test/engine.go | 2 +- 84 files changed, 84 insertions(+), 84 deletions(-) diff --git a/backend/backend.go b/backend/backend.go index 99aa45198..c8e9d4d57 100644 --- a/backend/backend.go +++ b/backend/backend.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package backend implements Zero Knowledge Proof systems: it consumes circuit compiled with gnark/frontend. diff --git a/backend/groth16/groth16.go b/backend/groth16/groth16.go index aa27ef3f7..3c4d1b564 100644 --- a/backend/groth16/groth16.go +++ b/backend/groth16/groth16.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package groth16 implements Groth16 Zero Knowledge Proof system (aka zkSNARK). diff --git a/backend/plonk/plonk.go b/backend/plonk/plonk.go index 2f5c0b458..6c9de3587 100644 --- a/backend/plonk/plonk.go +++ b/backend/plonk/plonk.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package plonk implements PLONK Zero Knowledge Proof system. diff --git a/backend/witness/witness.go b/backend/witness/witness.go index 384b3cd88..0e81f124d 100644 --- a/backend/witness/witness.go +++ b/backend/witness/witness.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/constraint/linear_expression.go b/constraint/linear_expression.go index 2f5ee970a..0feb4810a 100644 --- a/constraint/linear_expression.go +++ b/constraint/linear_expression.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package constraint diff --git a/constraint/log.go b/constraint/log.go index 485e7ecc1..c7d4445fc 100644 --- a/constraint/log.go +++ b/constraint/log.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package constraint diff --git a/constraint/r1cs.go b/constraint/r1cs.go index e0019046d..05b3fe8ae 100644 --- a/constraint/r1cs.go +++ b/constraint/r1cs.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package constraint diff --git a/constraint/r1cs_sparse.go b/constraint/r1cs_sparse.go index ddab38bd1..6d61d6765 100644 --- a/constraint/r1cs_sparse.go +++ b/constraint/r1cs_sparse.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package constraint diff --git a/constraint/term.go b/constraint/term.go index 72b846d7b..860592f63 100644 --- a/constraint/term.go +++ b/constraint/term.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package constraint diff --git a/examples/cubic/cubic.go b/examples/cubic/cubic.go index 83d936fed..26b9caeb0 100644 --- a/examples/cubic/cubic.go +++ b/examples/cubic/cubic.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package cubic diff --git a/examples/cubic/cubic_test.go b/examples/cubic/cubic_test.go index 07a644829..421755512 100644 --- a/examples/cubic/cubic_test.go +++ b/examples/cubic/cubic_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package cubic diff --git a/examples/exponentiate/exponentiate.go b/examples/exponentiate/exponentiate.go index 699417542..c567a5c80 100644 --- a/examples/exponentiate/exponentiate.go +++ b/examples/exponentiate/exponentiate.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package exponentiate diff --git a/examples/exponentiate/exponentiate_test.go b/examples/exponentiate/exponentiate_test.go index 53d439028..5408a64ff 100644 --- a/examples/exponentiate/exponentiate_test.go +++ b/examples/exponentiate/exponentiate_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package exponentiate diff --git a/examples/mimc/mimc.go b/examples/mimc/mimc.go index b94fde80b..b2fc83ba7 100644 --- a/examples/mimc/mimc.go +++ b/examples/mimc/mimc.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package mimc diff --git a/examples/mimc/mimc_test.go b/examples/mimc/mimc_test.go index 937df0d2c..5ee51eb9d 100644 --- a/examples/mimc/mimc_test.go +++ b/examples/mimc/mimc_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package mimc diff --git a/examples/plonk/main.go b/examples/plonk/main.go index 2a83435c0..b0903dfb7 100644 --- a/examples/plonk/main.go +++ b/examples/plonk/main.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package main diff --git a/examples/rollup/account.go b/examples/rollup/account.go index 60cfb18f4..feab47672 100644 --- a/examples/rollup/account.go +++ b/examples/rollup/account.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/account_test.go b/examples/rollup/account_test.go index 186cb3a4f..fb6441301 100644 --- a/examples/rollup/account_test.go +++ b/examples/rollup/account_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/circuit.go b/examples/rollup/circuit.go index ff5a3ad26..8dc8ae811 100644 --- a/examples/rollup/circuit.go +++ b/examples/rollup/circuit.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/circuit_test.go b/examples/rollup/circuit_test.go index f3dffa6b5..ac11ba08b 100644 --- a/examples/rollup/circuit_test.go +++ b/examples/rollup/circuit_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/error.go b/examples/rollup/error.go index 28a16dac2..484182044 100644 --- a/examples/rollup/error.go +++ b/examples/rollup/error.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/operator.go b/examples/rollup/operator.go index c39ad124c..d87e6390e 100644 --- a/examples/rollup/operator.go +++ b/examples/rollup/operator.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/rollup_test.go b/examples/rollup/rollup_test.go index 057fd7e1c..b803390de 100644 --- a/examples/rollup/rollup_test.go +++ b/examples/rollup/rollup_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/examples/rollup/transfer.go b/examples/rollup/transfer.go index 19a9192de..9d3311a77 100644 --- a/examples/rollup/transfer.go +++ b/examples/rollup/transfer.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package rollup diff --git a/frontend/api.go b/frontend/api.go index 5bfb76157..40a6fdfab 100644 --- a/frontend/api.go +++ b/frontend/api.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package frontend diff --git a/frontend/circuit.go b/frontend/circuit.go index 4b1ff4f91..bb6383dd4 100644 --- a/frontend/circuit.go +++ b/frontend/circuit.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package frontend diff --git a/frontend/cs/r1cs/api.go b/frontend/cs/r1cs/api.go index e754aa14d..c0763934a 100644 --- a/frontend/cs/r1cs/api.go +++ b/frontend/cs/r1cs/api.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package r1cs diff --git a/frontend/cs/r1cs/api_assertions.go b/frontend/cs/r1cs/api_assertions.go index 34ad3558e..3c32a1bfa 100644 --- a/frontend/cs/r1cs/api_assertions.go +++ b/frontend/cs/r1cs/api_assertions.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package r1cs diff --git a/frontend/cs/r1cs/builder.go b/frontend/cs/r1cs/builder.go index c4961bdec..f13526b8b 100644 --- a/frontend/cs/r1cs/builder.go +++ b/frontend/cs/r1cs/builder.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package r1cs diff --git a/frontend/cs/r1cs/r1cs_test.go b/frontend/cs/r1cs/r1cs_test.go index 22d08f048..bac8179e5 100644 --- a/frontend/cs/r1cs/r1cs_test.go +++ b/frontend/cs/r1cs/r1cs_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package r1cs diff --git a/frontend/cs/scs/api.go b/frontend/cs/scs/api.go index 3d9e202f2..ae919d67b 100644 --- a/frontend/cs/scs/api.go +++ b/frontend/cs/scs/api.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package scs diff --git a/frontend/cs/scs/api_assertions.go b/frontend/cs/scs/api_assertions.go index cd12857c0..2c6bd3a2b 100644 --- a/frontend/cs/scs/api_assertions.go +++ b/frontend/cs/scs/api_assertions.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package scs diff --git a/frontend/cs/scs/builder.go b/frontend/cs/scs/builder.go index 261da99df..07f925e95 100644 --- a/frontend/cs/scs/builder.go +++ b/frontend/cs/scs/builder.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package scs diff --git a/frontend/schema/field.go b/frontend/schema/field.go index 3fbf3c98e..387c41283 100644 --- a/frontend/schema/field.go +++ b/frontend/schema/field.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package schema diff --git a/frontend/schema/schema.go b/frontend/schema/schema.go index 7a945976e..449736179 100644 --- a/frontend/schema/schema.go +++ b/frontend/schema/schema.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package schema diff --git a/frontend/schema/schema_test.go b/frontend/schema/schema_test.go index a397e484e..ac7ef667c 100644 --- a/frontend/schema/schema_test.go +++ b/frontend/schema/schema_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package schema diff --git a/frontend/variable.go b/frontend/variable.go index d4337955e..dbaadfab6 100644 --- a/frontend/variable.go +++ b/frontend/variable.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package frontend diff --git a/integration_test.go b/integration_test.go index fbc35b4cf..95c2ccc92 100644 --- a/integration_test.go +++ b/integration_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package gnark_test diff --git a/internal/utils/convert.go b/internal/utils/convert.go index 488e58f71..083d620a6 100644 --- a/internal/utils/convert.go +++ b/internal/utils/convert.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package utils diff --git a/internal/utils/convert_test.go b/internal/utils/convert_test.go index e2459bf0d..9a72527f3 100644 --- a/internal/utils/convert_test.go +++ b/internal/utils/convert_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package utils diff --git a/io/io.go b/io/io.go index a2a0a37d8..4ba8cc41d 100644 --- a/io/io.go +++ b/io/io.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package io offers serialization interfaces for gnark objects. diff --git a/std/accumulator/merkle/verify.go b/std/accumulator/merkle/verify.go index f9cdd42e1..fad4b8450 100644 --- a/std/accumulator/merkle/verify.go +++ b/std/accumulator/merkle/verify.go @@ -26,7 +26,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package merkle provides a ZKP-circuit function to verify merkle proofs. diff --git a/std/accumulator/merkle/verify_test.go b/std/accumulator/merkle/verify_test.go index 03966b33d..ad5b40ad6 100644 --- a/std/accumulator/merkle/verify_test.go +++ b/std/accumulator/merkle/verify_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package merkle diff --git a/std/algebra/native/fields_bls12377/e12.go b/std/algebra/native/fields_bls12377/e12.go index 13396c6d7..d04890bab 100644 --- a/std/algebra/native/fields_bls12377/e12.go +++ b/std/algebra/native/fields_bls12377/e12.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls12377 diff --git a/std/algebra/native/fields_bls12377/e12_test.go b/std/algebra/native/fields_bls12377/e12_test.go index bf1090681..4e59e6cfe 100644 --- a/std/algebra/native/fields_bls12377/e12_test.go +++ b/std/algebra/native/fields_bls12377/e12_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls12377 diff --git a/std/algebra/native/fields_bls12377/e2.go b/std/algebra/native/fields_bls12377/e2.go index 3dcc1e84e..ec2de2c20 100644 --- a/std/algebra/native/fields_bls12377/e2.go +++ b/std/algebra/native/fields_bls12377/e2.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls12377 diff --git a/std/algebra/native/fields_bls12377/e2_test.go b/std/algebra/native/fields_bls12377/e2_test.go index 87e76aa05..9ed9e1a12 100644 --- a/std/algebra/native/fields_bls12377/e2_test.go +++ b/std/algebra/native/fields_bls12377/e2_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls12377 diff --git a/std/algebra/native/fields_bls12377/e6.go b/std/algebra/native/fields_bls12377/e6.go index bde75bfe2..b810d7774 100644 --- a/std/algebra/native/fields_bls12377/e6.go +++ b/std/algebra/native/fields_bls12377/e6.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls12377 diff --git a/std/algebra/native/fields_bls12377/e6_test.go b/std/algebra/native/fields_bls12377/e6_test.go index 5b7a2b084..8b9089fdc 100644 --- a/std/algebra/native/fields_bls12377/e6_test.go +++ b/std/algebra/native/fields_bls12377/e6_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls12377 diff --git a/std/algebra/native/fields_bls24315/e12.go b/std/algebra/native/fields_bls24315/e12.go index 15f54381f..dd7585ff5 100644 --- a/std/algebra/native/fields_bls24315/e12.go +++ b/std/algebra/native/fields_bls24315/e12.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e12_test.go b/std/algebra/native/fields_bls24315/e12_test.go index 88da510cd..1b857f2ee 100644 --- a/std/algebra/native/fields_bls24315/e12_test.go +++ b/std/algebra/native/fields_bls24315/e12_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e2.go b/std/algebra/native/fields_bls24315/e2.go index f104264bd..28e291aef 100644 --- a/std/algebra/native/fields_bls24315/e2.go +++ b/std/algebra/native/fields_bls24315/e2.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e24.go b/std/algebra/native/fields_bls24315/e24.go index e7c460946..362c5536a 100644 --- a/std/algebra/native/fields_bls24315/e24.go +++ b/std/algebra/native/fields_bls24315/e24.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e24_test.go b/std/algebra/native/fields_bls24315/e24_test.go index cf0a632c9..e987d0462 100644 --- a/std/algebra/native/fields_bls24315/e24_test.go +++ b/std/algebra/native/fields_bls24315/e24_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e2_test.go b/std/algebra/native/fields_bls24315/e2_test.go index 9523989a0..f54c452c9 100644 --- a/std/algebra/native/fields_bls24315/e2_test.go +++ b/std/algebra/native/fields_bls24315/e2_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e4.go b/std/algebra/native/fields_bls24315/e4.go index e0df040a0..fbe66cd56 100644 --- a/std/algebra/native/fields_bls24315/e4.go +++ b/std/algebra/native/fields_bls24315/e4.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/fields_bls24315/e4_test.go b/std/algebra/native/fields_bls24315/e4_test.go index 6585e824e..e5d019790 100644 --- a/std/algebra/native/fields_bls24315/e4_test.go +++ b/std/algebra/native/fields_bls24315/e4_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fields_bls24315 diff --git a/std/algebra/native/sw_bls12377/g1.go b/std/algebra/native/sw_bls12377/g1.go index 8d777c5bc..3a8f48c64 100644 --- a/std/algebra/native/sw_bls12377/g1.go +++ b/std/algebra/native/sw_bls12377/g1.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls12377/g1_test.go b/std/algebra/native/sw_bls12377/g1_test.go index 6c148b61e..20a4514df 100644 --- a/std/algebra/native/sw_bls12377/g1_test.go +++ b/std/algebra/native/sw_bls12377/g1_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls12377/g2.go b/std/algebra/native/sw_bls12377/g2.go index a0ef28a67..b21b57453 100644 --- a/std/algebra/native/sw_bls12377/g2.go +++ b/std/algebra/native/sw_bls12377/g2.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls12377/g2_test.go b/std/algebra/native/sw_bls12377/g2_test.go index e5d3afda6..4c4b3ed09 100644 --- a/std/algebra/native/sw_bls12377/g2_test.go +++ b/std/algebra/native/sw_bls12377/g2_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls12377/pairing.go b/std/algebra/native/sw_bls12377/pairing.go index c19c0fcd7..e4cf8f38d 100644 --- a/std/algebra/native/sw_bls12377/pairing.go +++ b/std/algebra/native/sw_bls12377/pairing.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls12377/pairing_test.go b/std/algebra/native/sw_bls12377/pairing_test.go index 6fa2b099d..3761f92b3 100644 --- a/std/algebra/native/sw_bls12377/pairing_test.go +++ b/std/algebra/native/sw_bls12377/pairing_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls12377/precomputations.go b/std/algebra/native/sw_bls12377/precomputations.go index 05309c5c4..d3257c775 100644 --- a/std/algebra/native/sw_bls12377/precomputations.go +++ b/std/algebra/native/sw_bls12377/precomputations.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls12377 diff --git a/std/algebra/native/sw_bls24315/g1.go b/std/algebra/native/sw_bls24315/g1.go index 73c71b4fc..9774006f1 100644 --- a/std/algebra/native/sw_bls24315/g1.go +++ b/std/algebra/native/sw_bls24315/g1.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/sw_bls24315/g1_test.go b/std/algebra/native/sw_bls24315/g1_test.go index 4f442e3b6..a5f0a2644 100644 --- a/std/algebra/native/sw_bls24315/g1_test.go +++ b/std/algebra/native/sw_bls24315/g1_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/sw_bls24315/g2.go b/std/algebra/native/sw_bls24315/g2.go index c3f7938b1..53670a8d5 100644 --- a/std/algebra/native/sw_bls24315/g2.go +++ b/std/algebra/native/sw_bls24315/g2.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/sw_bls24315/g2_test.go b/std/algebra/native/sw_bls24315/g2_test.go index a127051ee..f3003cdbb 100644 --- a/std/algebra/native/sw_bls24315/g2_test.go +++ b/std/algebra/native/sw_bls24315/g2_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/sw_bls24315/pairing.go b/std/algebra/native/sw_bls24315/pairing.go index ba1134540..87db3e603 100644 --- a/std/algebra/native/sw_bls24315/pairing.go +++ b/std/algebra/native/sw_bls24315/pairing.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/sw_bls24315/pairing_test.go b/std/algebra/native/sw_bls24315/pairing_test.go index dc01c1431..baad6e39c 100644 --- a/std/algebra/native/sw_bls24315/pairing_test.go +++ b/std/algebra/native/sw_bls24315/pairing_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/sw_bls24315/precomputations.go b/std/algebra/native/sw_bls24315/precomputations.go index 192356970..fff90a19c 100644 --- a/std/algebra/native/sw_bls24315/precomputations.go +++ b/std/algebra/native/sw_bls24315/precomputations.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package sw_bls24315 diff --git a/std/algebra/native/twistededwards/curve_test.go b/std/algebra/native/twistededwards/curve_test.go index 73349f010..3fcc08488 100644 --- a/std/algebra/native/twistededwards/curve_test.go +++ b/std/algebra/native/twistededwards/curve_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package twistededwards diff --git a/std/algebra/native/twistededwards/point.go b/std/algebra/native/twistededwards/point.go index 741a2347e..fde04e192 100644 --- a/std/algebra/native/twistededwards/point.go +++ b/std/algebra/native/twistededwards/point.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package twistededwards diff --git a/std/algebra/native/twistededwards/twistededwards.go b/std/algebra/native/twistededwards/twistededwards.go index 4da37e64e..f50ae666d 100644 --- a/std/algebra/native/twistededwards/twistededwards.go +++ b/std/algebra/native/twistededwards/twistededwards.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package twistededwards diff --git a/std/fiat-shamir/transcript.go b/std/fiat-shamir/transcript.go index 82dc8f146..6d7bd5711 100644 --- a/std/fiat-shamir/transcript.go +++ b/std/fiat-shamir/transcript.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fiatshamir diff --git a/std/fiat-shamir/transcript_test.go b/std/fiat-shamir/transcript_test.go index f95db9230..7fd67bdba 100644 --- a/std/fiat-shamir/transcript_test.go +++ b/std/fiat-shamir/transcript_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package fiatshamir diff --git a/std/hash/hash.go b/std/hash/hash.go index b86336038..80a1e5456 100644 --- a/std/hash/hash.go +++ b/std/hash/hash.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package hash provides an interface that hash functions (as gadget) should implement. diff --git a/std/hash/mimc/encrypt.go b/std/hash/mimc/encrypt.go index 5e8c6f12a..0d45a8150 100644 --- a/std/hash/mimc/encrypt.go +++ b/std/hash/mimc/encrypt.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package mimc diff --git a/std/hash/mimc/mimc.go b/std/hash/mimc/mimc.go index bc2daaaa4..530fb658c 100644 --- a/std/hash/mimc/mimc.go +++ b/std/hash/mimc/mimc.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package mimc diff --git a/std/hash/mimc/mimc_test.go b/std/hash/mimc/mimc_test.go index 8efc7cdc8..2fbc48a75 100644 --- a/std/hash/mimc/mimc_test.go +++ b/std/hash/mimc/mimc_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package mimc diff --git a/std/signature/eddsa/eddsa_test.go b/std/signature/eddsa/eddsa_test.go index 1553cd8a0..302b1a535 100644 --- a/std/signature/eddsa/eddsa_test.go +++ b/std/signature/eddsa/eddsa_test.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package eddsa diff --git a/test/assert.go b/test/assert.go index 253690b07..358abf93a 100644 --- a/test/assert.go +++ b/test/assert.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package test diff --git a/test/doc.go b/test/doc.go index 65ccf8e59..157865186 100644 --- a/test/doc.go +++ b/test/doc.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. // Package test provides components or functions to help test and fuzz gnark circuits. diff --git a/test/engine.go b/test/engine.go index fd84ab4ee..c4c42df58 100644 --- a/test/engine.go +++ b/test/engine.go @@ -1,4 +1,4 @@ -// Copyright 2020-2024 Consensys Software Inc. +// Copyright 2020-2025 Consensys Software Inc. // Licensed under the Apache License, Version 2.0. See the LICENSE file for details. package test