From 92c3d26331759297a5e563c4c4d9be9860948207 Mon Sep 17 00:00:00 2001 From: Parker Thompson Date: Wed, 18 Jan 2023 05:05:07 -0800 Subject: [PATCH] Update all 2022 license strings (#336) Co-authored-by: Frank Laub --- LICENSE-header | 2 +- risc0/build/risc0.ld | 2 +- risc0/circuit/rv32im/benches/eval_check.rs | 2 +- risc0/circuit/rv32im/cxx/ffi.cpp | 2 +- risc0/circuit/rv32im/cxx/ffi.h | 2 +- risc0/circuit/rv32im/cxx/fp.h | 2 +- risc0/circuit/rv32im/cxx/fp4.h | 2 +- risc0/circuit/rv32im/src/cpp.rs | 2 +- risc0/circuit/rv32im/src/cpu.rs | 2 +- risc0/circuit/rv32im/src/cuda.rs | 2 +- risc0/circuit/rv32im/src/ffi.rs | 2 +- risc0/circuit/rv32im/src/lib.rs | 2 +- risc0/circuit/rv32im/src/metal.rs | 2 +- risc0/tools/tests/integration_tests.rs | 2 +- risc0/zeroio/src/deserialize.rs | 2 +- risc0/zeroio/src/lib.rs | 2 +- risc0/zeroio/src/serialize.rs | 2 +- risc0/zeroio/src/serialize_test.rs | 2 +- risc0/zeroio/src/tests.rs | 2 +- risc0/zeroio/src/util.rs | 2 +- risc0/zeroio_derive/src/lib.rs | 2 +- risc0/zkp/benches/ntt.rs | 2 +- risc0/zkp/build.rs | 2 +- risc0/zkp/kernels/cuda/fp.h | 2 +- risc0/zkp/kernels/cuda/fp4.h | 2 +- risc0/zkp/kernels/cuda/sha256.h | 2 +- risc0/zkp/kernels/metal/fp.h | 2 +- risc0/zkp/kernels/metal/fp4.h | 2 +- risc0/zkp/kernels/metal/sha256.h | 2 +- risc0/zkp/src/core/mod.rs | 2 +- risc0/zkp/src/core/ntt.rs | 2 +- risc0/zkp/src/core/poly.rs | 2 +- risc0/zkp/src/core/sha_cpu.rs | 2 +- risc0/zkp/src/core/sha_rng.rs | 2 +- risc0/zkp/src/field/baby_bear.rs | 2 +- risc0/zkp/src/field/goldilocks.rs | 2 +- risc0/zkp/src/field/mod.rs | 2 +- risc0/zkp/src/hal/cpu.rs | 2 +- risc0/zkp/src/hal/cuda.rs | 2 +- risc0/zkp/src/hal/dual.rs | 2 +- risc0/zkp/src/hal/metal.rs | 2 +- risc0/zkp/src/hal/mod.rs | 2 +- risc0/zkp/src/lib.rs | 2 +- risc0/zkp/src/merkle.rs | 2 +- risc0/zkp/src/prove/fri.rs | 2 +- risc0/zkp/src/prove/merkle.rs | 2 +- risc0/zkp/src/prove/poly_group.rs | 2 +- risc0/zkp/src/prove/write_iop.rs | 2 +- risc0/zkp/src/taps.rs | 2 +- risc0/zkp/src/verify/adapter.rs | 2 +- risc0/zkp/src/verify/fri.rs | 2 +- risc0/zkp/src/verify/merkle.rs | 2 +- risc0/zkvm/benches/fib.rs | 2 +- risc0/zkvm/benches/guest_run.rs | 2 +- risc0/zkvm/build.rs | 2 +- risc0/zkvm/examples/fib.rs | 2 +- risc0/zkvm/methods/src/bench.rs | 2 +- risc0/zkvm/methods/src/lib.rs | 2 +- risc0/zkvm/methods/src/multi_test.rs | 2 +- risc0/zkvm/methods/std/src/bin/bench.rs | 2 +- risc0/zkvm/methods/std/src/bin/fib.rs | 2 +- risc0/zkvm/methods/std/src/bin/hello_commit.rs | 2 +- risc0/zkvm/methods/std/src/bin/standard_lib.rs | 2 +- risc0/zkvm/methods/std/src/bin/test_feature.rs | 2 +- risc0/zkvm/platform/src/abi.rs | 2 +- risc0/zkvm/platform/src/io.rs | 2 +- risc0/zkvm/platform/src/syscall.rs | 2 +- risc0/zkvm/src/guest/alloc.rs | 2 +- risc0/zkvm/src/guest/sha.rs | 2 +- risc0/zkvm/src/prove/elf.rs | 2 +- risc0/zkvm/src/serde/deserializer.rs | 2 +- risc0/zkvm/src/serde/err.rs | 2 +- risc0/zkvm/src/serde/mod.rs | 2 +- risc0/zkvm/src/serde/serializer.rs | 2 +- risc0/zkvm/src/sha.rs | 2 +- 75 files changed, 75 insertions(+), 75 deletions(-) diff --git a/LICENSE-header b/LICENSE-header index e1e3eac8f5..16cc530363 100644 --- a/LICENSE-header +++ b/LICENSE-header @@ -1,4 +1,4 @@ - Copyright 2022 RISC Zero, Inc. + Copyright 2023 RISC Zero, 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/risc0/build/risc0.ld b/risc0/build/risc0.ld index 8f4626e42d..8bf3a91f71 100644 --- a/risc0/build/risc0.ld +++ b/risc0/build/risc0.ld @@ -1,5 +1,5 @@ /* - Copyright 2022 Risc0, Inc. + Copyright 2023 Risc0, 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/risc0/circuit/rv32im/benches/eval_check.rs b/risc0/circuit/rv32im/benches/eval_check.rs index 94e2c71378..946d364933 100644 --- a/risc0/circuit/rv32im/benches/eval_check.rs +++ b/risc0/circuit/rv32im/benches/eval_check.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/cxx/ffi.cpp b/risc0/circuit/rv32im/cxx/ffi.cpp index e01d9411c2..c03bbc6590 100644 --- a/risc0/circuit/rv32im/cxx/ffi.cpp +++ b/risc0/circuit/rv32im/cxx/ffi.cpp @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/cxx/ffi.h b/risc0/circuit/rv32im/cxx/ffi.h index c58c104826..72b1105672 100644 --- a/risc0/circuit/rv32im/cxx/ffi.h +++ b/risc0/circuit/rv32im/cxx/ffi.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/cxx/fp.h b/risc0/circuit/rv32im/cxx/fp.h index eae22ad68c..502f973f0b 100644 --- a/risc0/circuit/rv32im/cxx/fp.h +++ b/risc0/circuit/rv32im/cxx/fp.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/cxx/fp4.h b/risc0/circuit/rv32im/cxx/fp4.h index 3f61cc614c..dd08ec52f3 100644 --- a/risc0/circuit/rv32im/cxx/fp4.h +++ b/risc0/circuit/rv32im/cxx/fp4.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/src/cpp.rs b/risc0/circuit/rv32im/src/cpp.rs index 41d9ee1d30..542b61cb97 100644 --- a/risc0/circuit/rv32im/src/cpp.rs +++ b/risc0/circuit/rv32im/src/cpp.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/src/cpu.rs b/risc0/circuit/rv32im/src/cpu.rs index 9443df8525..dfc045b332 100644 --- a/risc0/circuit/rv32im/src/cpu.rs +++ b/risc0/circuit/rv32im/src/cpu.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/src/cuda.rs b/risc0/circuit/rv32im/src/cuda.rs index 37b588b6c0..82340225be 100644 --- a/risc0/circuit/rv32im/src/cuda.rs +++ b/risc0/circuit/rv32im/src/cuda.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/src/ffi.rs b/risc0/circuit/rv32im/src/ffi.rs index c6fd0fece7..7d48d493e0 100644 --- a/risc0/circuit/rv32im/src/ffi.rs +++ b/risc0/circuit/rv32im/src/ffi.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/src/lib.rs b/risc0/circuit/rv32im/src/lib.rs index 4cedc73888..a644b192fb 100644 --- a/risc0/circuit/rv32im/src/lib.rs +++ b/risc0/circuit/rv32im/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/circuit/rv32im/src/metal.rs b/risc0/circuit/rv32im/src/metal.rs index 67c69fa7de..0536eb100f 100644 --- a/risc0/circuit/rv32im/src/metal.rs +++ b/risc0/circuit/rv32im/src/metal.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/tools/tests/integration_tests.rs b/risc0/tools/tests/integration_tests.rs index 533b0e7529..6485d5a2c2 100644 --- a/risc0/tools/tests/integration_tests.rs +++ b/risc0/tools/tests/integration_tests.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio/src/deserialize.rs b/risc0/zeroio/src/deserialize.rs index 56bed0b473..5c082ec864 100644 --- a/risc0/zeroio/src/deserialize.rs +++ b/risc0/zeroio/src/deserialize.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio/src/lib.rs b/risc0/zeroio/src/lib.rs index d964d23776..459ff23e96 100644 --- a/risc0/zeroio/src/lib.rs +++ b/risc0/zeroio/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio/src/serialize.rs b/risc0/zeroio/src/serialize.rs index 707bd76b89..d6b9e19a64 100644 --- a/risc0/zeroio/src/serialize.rs +++ b/risc0/zeroio/src/serialize.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio/src/serialize_test.rs b/risc0/zeroio/src/serialize_test.rs index 8f2cf6fed7..86f5c529f5 100644 --- a/risc0/zeroio/src/serialize_test.rs +++ b/risc0/zeroio/src/serialize_test.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio/src/tests.rs b/risc0/zeroio/src/tests.rs index 56001e7717..7005c1f9c6 100644 --- a/risc0/zeroio/src/tests.rs +++ b/risc0/zeroio/src/tests.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio/src/util.rs b/risc0/zeroio/src/util.rs index aebb0ea83b..03d723cd7a 100644 --- a/risc0/zeroio/src/util.rs +++ b/risc0/zeroio/src/util.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zeroio_derive/src/lib.rs b/risc0/zeroio_derive/src/lib.rs index 1381fba594..6d1a181c51 100644 --- a/risc0/zeroio_derive/src/lib.rs +++ b/risc0/zeroio_derive/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/benches/ntt.rs b/risc0/zkp/benches/ntt.rs index 1357f271c0..2599af686d 100644 --- a/risc0/zkp/benches/ntt.rs +++ b/risc0/zkp/benches/ntt.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/build.rs b/risc0/zkp/build.rs index e2b201e2a9..8c24117345 100644 --- a/risc0/zkp/build.rs +++ b/risc0/zkp/build.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/kernels/cuda/fp.h b/risc0/zkp/kernels/cuda/fp.h index bc680e0504..bad75541a0 100644 --- a/risc0/zkp/kernels/cuda/fp.h +++ b/risc0/zkp/kernels/cuda/fp.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/kernels/cuda/fp4.h b/risc0/zkp/kernels/cuda/fp4.h index c371d0302e..2ee9dc3fb6 100644 --- a/risc0/zkp/kernels/cuda/fp4.h +++ b/risc0/zkp/kernels/cuda/fp4.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/kernels/cuda/sha256.h b/risc0/zkp/kernels/cuda/sha256.h index c7706c4cf3..703d019655 100644 --- a/risc0/zkp/kernels/cuda/sha256.h +++ b/risc0/zkp/kernels/cuda/sha256.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/kernels/metal/fp.h b/risc0/zkp/kernels/metal/fp.h index aecd5b8cae..11331a9150 100644 --- a/risc0/zkp/kernels/metal/fp.h +++ b/risc0/zkp/kernels/metal/fp.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/kernels/metal/fp4.h b/risc0/zkp/kernels/metal/fp4.h index bd96686b3b..5b183e7708 100644 --- a/risc0/zkp/kernels/metal/fp4.h +++ b/risc0/zkp/kernels/metal/fp4.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/kernels/metal/sha256.h b/risc0/zkp/kernels/metal/sha256.h index 4c0524995e..f338b33d8d 100644 --- a/risc0/zkp/kernels/metal/sha256.h +++ b/risc0/zkp/kernels/metal/sha256.h @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/core/mod.rs b/risc0/zkp/src/core/mod.rs index dc2e15dd77..4d46fc1d89 100644 --- a/risc0/zkp/src/core/mod.rs +++ b/risc0/zkp/src/core/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/core/ntt.rs b/risc0/zkp/src/core/ntt.rs index a9fea2abad..c211384763 100644 --- a/risc0/zkp/src/core/ntt.rs +++ b/risc0/zkp/src/core/ntt.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/core/poly.rs b/risc0/zkp/src/core/poly.rs index 75b29f457b..c7e908d538 100644 --- a/risc0/zkp/src/core/poly.rs +++ b/risc0/zkp/src/core/poly.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/core/sha_cpu.rs b/risc0/zkp/src/core/sha_cpu.rs index 02e6a303a6..a6789a96f0 100644 --- a/risc0/zkp/src/core/sha_cpu.rs +++ b/risc0/zkp/src/core/sha_cpu.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/core/sha_rng.rs b/risc0/zkp/src/core/sha_rng.rs index b8ff3ec9ef..b804e5835c 100644 --- a/risc0/zkp/src/core/sha_rng.rs +++ b/risc0/zkp/src/core/sha_rng.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/field/baby_bear.rs b/risc0/zkp/src/field/baby_bear.rs index 46b60bdcd3..72fbc50d8a 100644 --- a/risc0/zkp/src/field/baby_bear.rs +++ b/risc0/zkp/src/field/baby_bear.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/field/goldilocks.rs b/risc0/zkp/src/field/goldilocks.rs index 7b57d82a0f..26104963ca 100644 --- a/risc0/zkp/src/field/goldilocks.rs +++ b/risc0/zkp/src/field/goldilocks.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/field/mod.rs b/risc0/zkp/src/field/mod.rs index 6cc82edf9d..5664b12a38 100644 --- a/risc0/zkp/src/field/mod.rs +++ b/risc0/zkp/src/field/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/hal/cpu.rs b/risc0/zkp/src/hal/cpu.rs index 164895becc..e65d1b8f67 100644 --- a/risc0/zkp/src/hal/cpu.rs +++ b/risc0/zkp/src/hal/cpu.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/hal/cuda.rs b/risc0/zkp/src/hal/cuda.rs index e2e3d1a9e7..3cf8f9db8a 100644 --- a/risc0/zkp/src/hal/cuda.rs +++ b/risc0/zkp/src/hal/cuda.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/hal/dual.rs b/risc0/zkp/src/hal/dual.rs index 5df5aff772..f0deecf828 100644 --- a/risc0/zkp/src/hal/dual.rs +++ b/risc0/zkp/src/hal/dual.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/hal/metal.rs b/risc0/zkp/src/hal/metal.rs index 708c32c5ac..af956e008a 100644 --- a/risc0/zkp/src/hal/metal.rs +++ b/risc0/zkp/src/hal/metal.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/hal/mod.rs b/risc0/zkp/src/hal/mod.rs index 7ca1b9c1ad..b46b969462 100644 --- a/risc0/zkp/src/hal/mod.rs +++ b/risc0/zkp/src/hal/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/lib.rs b/risc0/zkp/src/lib.rs index dab2b8b715..816ad8ddca 100644 --- a/risc0/zkp/src/lib.rs +++ b/risc0/zkp/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/merkle.rs b/risc0/zkp/src/merkle.rs index e0bf4d888c..cfe0f9509d 100644 --- a/risc0/zkp/src/merkle.rs +++ b/risc0/zkp/src/merkle.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/prove/fri.rs b/risc0/zkp/src/prove/fri.rs index b78f419fe2..ac3628184f 100644 --- a/risc0/zkp/src/prove/fri.rs +++ b/risc0/zkp/src/prove/fri.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/prove/merkle.rs b/risc0/zkp/src/prove/merkle.rs index 22ccb1a055..f5ce6ede30 100644 --- a/risc0/zkp/src/prove/merkle.rs +++ b/risc0/zkp/src/prove/merkle.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/prove/poly_group.rs b/risc0/zkp/src/prove/poly_group.rs index 6edb3b371d..2aec3ff972 100644 --- a/risc0/zkp/src/prove/poly_group.rs +++ b/risc0/zkp/src/prove/poly_group.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/prove/write_iop.rs b/risc0/zkp/src/prove/write_iop.rs index e908151f9b..20bb6c49b2 100644 --- a/risc0/zkp/src/prove/write_iop.rs +++ b/risc0/zkp/src/prove/write_iop.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/taps.rs b/risc0/zkp/src/taps.rs index aeac976a7f..67dd63bd69 100644 --- a/risc0/zkp/src/taps.rs +++ b/risc0/zkp/src/taps.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/verify/adapter.rs b/risc0/zkp/src/verify/adapter.rs index 9dc5d8c20d..6f8dde0eec 100644 --- a/risc0/zkp/src/verify/adapter.rs +++ b/risc0/zkp/src/verify/adapter.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/verify/fri.rs b/risc0/zkp/src/verify/fri.rs index 1256c01292..c286e4e70a 100644 --- a/risc0/zkp/src/verify/fri.rs +++ b/risc0/zkp/src/verify/fri.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkp/src/verify/merkle.rs b/risc0/zkp/src/verify/merkle.rs index b5bb406078..df14850d3d 100644 --- a/risc0/zkp/src/verify/merkle.rs +++ b/risc0/zkp/src/verify/merkle.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/benches/fib.rs b/risc0/zkvm/benches/fib.rs index f4cd7a76c4..b656309b69 100644 --- a/risc0/zkvm/benches/fib.rs +++ b/risc0/zkvm/benches/fib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/benches/guest_run.rs b/risc0/zkvm/benches/guest_run.rs index 512d097b5a..5a16392a2a 100644 --- a/risc0/zkvm/benches/guest_run.rs +++ b/risc0/zkvm/benches/guest_run.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/build.rs b/risc0/zkvm/build.rs index 651271eb09..d04b06c769 100644 --- a/risc0/zkvm/build.rs +++ b/risc0/zkvm/build.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/examples/fib.rs b/risc0/zkvm/examples/fib.rs index 7a84a35fb7..fc34baee47 100644 --- a/risc0/zkvm/examples/fib.rs +++ b/risc0/zkvm/examples/fib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/src/bench.rs b/risc0/zkvm/methods/src/bench.rs index 67f7ec19e7..2cac983cbe 100644 --- a/risc0/zkvm/methods/src/bench.rs +++ b/risc0/zkvm/methods/src/bench.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/src/lib.rs b/risc0/zkvm/methods/src/lib.rs index 7126975ee0..2049e7a9e8 100644 --- a/risc0/zkvm/methods/src/lib.rs +++ b/risc0/zkvm/methods/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/src/multi_test.rs b/risc0/zkvm/methods/src/multi_test.rs index 06d880629c..9878394dc8 100644 --- a/risc0/zkvm/methods/src/multi_test.rs +++ b/risc0/zkvm/methods/src/multi_test.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/std/src/bin/bench.rs b/risc0/zkvm/methods/std/src/bin/bench.rs index e853ad93ce..fb56831c5a 100644 --- a/risc0/zkvm/methods/std/src/bin/bench.rs +++ b/risc0/zkvm/methods/std/src/bin/bench.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/std/src/bin/fib.rs b/risc0/zkvm/methods/std/src/bin/fib.rs index 554f0b9de0..174140496a 100644 --- a/risc0/zkvm/methods/std/src/bin/fib.rs +++ b/risc0/zkvm/methods/std/src/bin/fib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/std/src/bin/hello_commit.rs b/risc0/zkvm/methods/std/src/bin/hello_commit.rs index 6b504f59ad..edcf2cb708 100644 --- a/risc0/zkvm/methods/std/src/bin/hello_commit.rs +++ b/risc0/zkvm/methods/std/src/bin/hello_commit.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/std/src/bin/standard_lib.rs b/risc0/zkvm/methods/std/src/bin/standard_lib.rs index da566ee4dd..acfc522483 100644 --- a/risc0/zkvm/methods/std/src/bin/standard_lib.rs +++ b/risc0/zkvm/methods/std/src/bin/standard_lib.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/methods/std/src/bin/test_feature.rs b/risc0/zkvm/methods/std/src/bin/test_feature.rs index 065d68ed62..3530586c56 100644 --- a/risc0/zkvm/methods/std/src/bin/test_feature.rs +++ b/risc0/zkvm/methods/std/src/bin/test_feature.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/platform/src/abi.rs b/risc0/zkvm/platform/src/abi.rs index b48397d39a..b80c92cdcd 100644 --- a/risc0/zkvm/platform/src/abi.rs +++ b/risc0/zkvm/platform/src/abi.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/platform/src/io.rs b/risc0/zkvm/platform/src/io.rs index 24e45a2ec1..c757006300 100644 --- a/risc0/zkvm/platform/src/io.rs +++ b/risc0/zkvm/platform/src/io.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/platform/src/syscall.rs b/risc0/zkvm/platform/src/syscall.rs index 069947f711..dd67709b2e 100644 --- a/risc0/zkvm/platform/src/syscall.rs +++ b/risc0/zkvm/platform/src/syscall.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/guest/alloc.rs b/risc0/zkvm/src/guest/alloc.rs index 797ba623fb..46e0bef3f0 100644 --- a/risc0/zkvm/src/guest/alloc.rs +++ b/risc0/zkvm/src/guest/alloc.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/guest/sha.rs b/risc0/zkvm/src/guest/sha.rs index 9ccb54a2c0..e5a6e26f09 100644 --- a/risc0/zkvm/src/guest/sha.rs +++ b/risc0/zkvm/src/guest/sha.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/prove/elf.rs b/risc0/zkvm/src/prove/elf.rs index b45f05eb46..c09fa1a0d3 100644 --- a/risc0/zkvm/src/prove/elf.rs +++ b/risc0/zkvm/src/prove/elf.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/serde/deserializer.rs b/risc0/zkvm/src/serde/deserializer.rs index da3c6afc12..5f2f206fa7 100644 --- a/risc0/zkvm/src/serde/deserializer.rs +++ b/risc0/zkvm/src/serde/deserializer.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/serde/err.rs b/risc0/zkvm/src/serde/err.rs index 89e7a4641a..9cb935f750 100644 --- a/risc0/zkvm/src/serde/err.rs +++ b/risc0/zkvm/src/serde/err.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/serde/mod.rs b/risc0/zkvm/src/serde/mod.rs index 56d09f869f..559386c621 100644 --- a/risc0/zkvm/src/serde/mod.rs +++ b/risc0/zkvm/src/serde/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/serde/serializer.rs b/risc0/zkvm/src/serde/serializer.rs index 32e4320a1c..51cf2a92e9 100644 --- a/risc0/zkvm/src/serde/serializer.rs +++ b/risc0/zkvm/src/serde/serializer.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, 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/risc0/zkvm/src/sha.rs b/risc0/zkvm/src/sha.rs index 25993b89d9..b255683155 100644 --- a/risc0/zkvm/src/sha.rs +++ b/risc0/zkvm/src/sha.rs @@ -1,4 +1,4 @@ -// Copyright 2022 RISC Zero, Inc. +// Copyright 2023 RISC Zero, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.