diff --git a/Aaru.Checksums.Native.nuspec b/Aaru.Checksums.Native.nuspec index cb07fd9..d30c931 100644 --- a/Aaru.Checksums.Native.nuspec +++ b/Aaru.Checksums.Native.nuspec @@ -7,7 +7,7 @@ claunia https://github.com/aaru-dps/Aaru.Checksums.Native https://spdx.org/licenses/LGPL-2.1-only.html - Copyright © 2011-2023 Natalia Portillo + Copyright © 2011-2025 Natalia Portillo diff --git a/CMakeLists.txt b/CMakeLists.txt index 03d89cd..4fe9e53 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.15) # This file is part of the Aaru Data Preservation Suite. -# Copyright (c) 2019-2023 Natalia Portillo. +# Copyright (c) 2019-2025 Natalia Portillo. # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as diff --git a/README.md b/README.md index d09b63f..71c18ff 100644 --- a/README.md +++ b/README.md @@ -25,4 +25,4 @@ The resulting output of `build.sh` falls under the LGPL 2.1 license as stated in Any new algorithm added should be under a license compatible with the LGPL 2.1 license to be accepted. -© 2021-2023 Natalia Portillo \ No newline at end of file +© 2021-2025 Natalia Portillo \ No newline at end of file diff --git a/adler32.c b/adler32.c index ac1f69a..04a6938 100644 --- a/adler32.c +++ b/adler32.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 1995-2011 Mark Adler * Copyright (C) Jean-loup Gailly * diff --git a/adler32.h b/adler32.h index cb42941..e7d739e 100644 --- a/adler32.h +++ b/adler32.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/adler32_avx2.c b/adler32_avx2.c index d3c9d7e..3db00ef 100644 --- a/adler32_avx2.c +++ b/adler32_avx2.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 1995-2011 Mark Adler * Copyright (C) Jean-loup Gailly * diff --git a/adler32_neon.c b/adler32_neon.c index ee1654e..6b99c0b 100644 --- a/adler32_neon.c +++ b/adler32_neon.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/adler32_ssse3.c b/adler32_ssse3.c index 49853ff..0d32ba2 100644 --- a/adler32_ssse3.c +++ b/adler32_ssse3.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/arm_vmull.c b/arm_vmull.c index 7436366..8ad81d0 100644 --- a/arm_vmull.c +++ b/arm_vmull.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright sse2neon.h contributors * * sse2neon is freely redistributable under the MIT License. diff --git a/arm_vmull.h b/arm_vmull.h index 3409edb..380d0cd 100644 --- a/arm_vmull.h +++ b/arm_vmull.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/build.sh b/build.sh index 6797981..7e2fc94 100644 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # This file is part of the Aaru Data Preservation Suite. -# Copyright (c) 2019-2023 Natalia Portillo. +# Copyright (c) 2019-2025 Natalia Portillo. # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as diff --git a/crc16.c b/crc16.c index b8ad06c..453e0ab 100644 --- a/crc16.c +++ b/crc16.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc16.h b/crc16.h index 4d5f17c..305b259 100644 --- a/crc16.h +++ b/crc16.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc16_ccitt.c b/crc16_ccitt.c index 37ccbb5..da40e1c 100644 --- a/crc16_ccitt.c +++ b/crc16_ccitt.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc16_ccitt.h b/crc16_ccitt.h index cf16243..c708448 100644 --- a/crc16_ccitt.h +++ b/crc16_ccitt.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc32.c b/crc32.c index 9b9a4c2..3997409 100644 --- a/crc32.c +++ b/crc32.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc32.h b/crc32.h index 1b163d0..16d3733 100644 --- a/crc32.h +++ b/crc32.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc32_arm_simd.c b/crc32_arm_simd.c index 539fcea..93b390e 100644 --- a/crc32_arm_simd.c +++ b/crc32_arm_simd.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/crc32_clmul.c b/crc32_clmul.c index 5d16f63..d84bc01 100644 --- a/crc32_clmul.c +++ b/crc32_clmul.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright © 2011-2023 Natalia Portillo + * Copyright © 2011-2025 Natalia Portillo * Copyright (c) 2016 Marian Beermann (add support for initial value, restructuring) * Copyright (C) 2013 Intel Corporation. All rights reserved. * diff --git a/crc32_simd.h b/crc32_simd.h index bc821b5..2a6ec48 100644 --- a/crc32_simd.h +++ b/crc32_simd.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc32_vmull.c b/crc32_vmull.c index 5ca0732..c66e27c 100644 --- a/crc32_vmull.c +++ b/crc32_vmull.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright © 2011-2023 Natalia Portillo + * Copyright © 2011-2025 Natalia Portillo * Copyright (c) 2016 Marian Beermann (add support for initial value, restructuring) * Copyright (C) 2013 Intel Corporation. All rights reserved. * diff --git a/crc64.c b/crc64.c index 81fa9e4..f9ca534 100644 --- a/crc64.c +++ b/crc64.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc64.h b/crc64.h index 3ff5166..f91577d 100644 --- a/crc64.h +++ b/crc64.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/crc64_clmul.c b/crc64_clmul.c index 634ecfa..2472d1e 100644 --- a/crc64_clmul.c +++ b/crc64_clmul.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This file is under the public domain: * https://github.com/rawrunprotected/crc diff --git a/crc64_vmull.c b/crc64_vmull.c index 8c51d7f..56eae2e 100644 --- a/crc64_vmull.c +++ b/crc64_vmull.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This file is under the public domain: * https://github.com/rawrunprotected/crc diff --git a/fletcher16.c b/fletcher16.c index b44a257..fbd8451 100644 --- a/fletcher16.c +++ b/fletcher16.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 1995-2011 Mark Adler * Copyright (C) Jean-loup Gailly * diff --git a/fletcher16.h b/fletcher16.h index a4fc191..b28aa9f 100644 --- a/fletcher16.h +++ b/fletcher16.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/fletcher16_avx2.c b/fletcher16_avx2.c index a1c9a74..a3a8e33 100644 --- a/fletcher16_avx2.c +++ b/fletcher16_avx2.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 1995-2011 Mark Adler * Copyright (C) Jean-loup Gailly * diff --git a/fletcher16_neon.c b/fletcher16_neon.c index 52d3a53..fdc2077 100644 --- a/fletcher16_neon.c +++ b/fletcher16_neon.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/fletcher16_ssse3.c b/fletcher16_ssse3.c index 8e35ba9..399b2df 100644 --- a/fletcher16_ssse3.c +++ b/fletcher16_ssse3.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/fletcher32.c b/fletcher32.c index 87eea18..3b9fb84 100644 --- a/fletcher32.c +++ b/fletcher32.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 1995-2011 Mark Adler * Copyright (C) Jean-loup Gailly * diff --git a/fletcher32.h b/fletcher32.h index e0d7f2b..2b53150 100644 --- a/fletcher32.h +++ b/fletcher32.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/fletcher32_avx2.c b/fletcher32_avx2.c index dde4111..f20aa7d 100644 --- a/fletcher32_avx2.c +++ b/fletcher32_avx2.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 1995-2011 Mark Adler * Copyright (C) Jean-loup Gailly * diff --git a/fletcher32_neon.c b/fletcher32_neon.c index bdb7393..d0a930f 100644 --- a/fletcher32_neon.c +++ b/fletcher32_neon.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/fletcher32_ssse3.c b/fletcher32_ssse3.c index 96be0a0..b60b0c7 100644 --- a/fletcher32_ssse3.c +++ b/fletcher32_ssse3.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright 2017 The Chromium Authors. All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/library.c b/library.c index 1c6978c..f75afa8 100644 --- a/library.c +++ b/library.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/library.h b/library.h index cf38507..1c71141 100644 --- a/library.h +++ b/library.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/simd.c b/simd.c index 44fe86f..ae7fffe 100644 --- a/simd.c +++ b/simd.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/simd.h b/simd.h index 210acc5..1e0462a 100644 --- a/simd.h +++ b/simd.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/spamsum.c b/spamsum.c index a9c6ab8..e805968 100644 --- a/spamsum.c +++ b/spamsum.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 2002 Andrew Tridgell * Copyright (C) 2006 ManTech International Corporation * Copyright (C) 2013 Helmut Grohne diff --git a/spamsum.h b/spamsum.h index 68a4457..2e19079 100644 --- a/spamsum.h +++ b/spamsum.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2023 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as