From d681002980ca0b115936a6e217de5649bb8966d3 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Fri, 8 Dec 2023 11:42:41 +0300 Subject: [PATCH] Raise copyright years in advance --- cmd/cer-dane-hash/main.go | 2 +- cmd/cer-selfsigned-example/main.go | 2 +- cmd/streebog256/main.go | 2 +- cmd/streebog512/main.go | 2 +- gost28147/cbc_test.go | 2 +- gost28147/cfb.go | 2 +- gost28147/cfb_test.go | 2 +- gost28147/cipher.go | 2 +- gost28147/cipher_test.go | 2 +- gost28147/ctr.go | 2 +- gost28147/ctr_test.go | 2 +- gost28147/ecb.go | 2 +- gost28147/ecb_test.go | 2 +- gost28147/mac.go | 2 +- gost28147/mac_test.go | 2 +- gost28147/sbox.go | 2 +- gost3410/2001_test.go | 2 +- gost3410/2012_test.go | 2 +- gost3410/curve.go | 2 +- gost3410/edwards.go | 2 +- gost3410/params.go | 2 +- gost3410/private.go | 2 +- gost3410/private_test.go | 2 +- gost3410/public.go | 2 +- gost3410/ukm.go | 2 +- gost3410/utils.go | 2 +- gost3410/vko.go | 2 +- gost3410/vko2001.go | 2 +- gost3410/vko2001_test.go | 2 +- gost3410/vko2012.go | 2 +- gost3410/vko2012_test.go | 2 +- gost34112012256/esptree.go | 2 +- gost34112012256/esptree_test.go | 2 +- gost34112012256/hash.go | 2 +- gost34112012256/hkdf_test.go | 2 +- gost34112012256/kdf.go | 2 +- gost34112012256/kdf_test.go | 2 +- gost34112012256/tlstree.go | 2 +- gost34112012256/tlstree_test.go | 2 +- gost34112012512/hash.go | 2 +- gost341194/hash.go | 2 +- gost341194/hash_test.go | 2 +- gost341194/pbkdf2_test.go | 2 +- gost3412128/cipher.go | 2 +- gost3412128/cipher_test.go | 2 +- gost341264/cipher.go | 2 +- gost341264/cipher_test.go | 2 +- gost3413/padding.go | 2 +- internal/gost34112012/hash.go | 2 +- internal/gost34112012/hash_test.go | 2 +- internal/gost34112012/hmac_test.go | 2 +- mgm/mode.go | 2 +- mgm/mode_test.go | 2 +- mgm/mul128.go | 2 +- mgm/mul128_test.go | 2 +- mgm/mul64.go | 2 +- mgm/mul64_test.go | 2 +- prfplus/gost.go | 2 +- prfplus/gost_test.go | 2 +- prfplus/plus.go | 2 +- www.texi | 2 +- 61 files changed, 61 insertions(+), 61 deletions(-) diff --git a/cmd/cer-dane-hash/main.go b/cmd/cer-dane-hash/main.go index c81a222..893738e 100644 --- a/cmd/cer-dane-hash/main.go +++ b/cmd/cer-dane-hash/main.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/cmd/cer-selfsigned-example/main.go b/cmd/cer-selfsigned-example/main.go index 5f52ad7..886bbf8 100644 --- a/cmd/cer-selfsigned-example/main.go +++ b/cmd/cer-selfsigned-example/main.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/cmd/streebog256/main.go b/cmd/streebog256/main.go index 8094a19..0489730 100644 --- a/cmd/streebog256/main.go +++ b/cmd/streebog256/main.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/cmd/streebog512/main.go b/cmd/streebog512/main.go index 388d35c..5f7c435 100644 --- a/cmd/streebog512/main.go +++ b/cmd/streebog512/main.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/cbc_test.go b/gost28147/cbc_test.go index 06cd020..739444a 100644 --- a/gost28147/cbc_test.go +++ b/gost28147/cbc_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/cfb.go b/gost28147/cfb.go index d097c99..5dc559d 100644 --- a/gost28147/cfb.go +++ b/gost28147/cfb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/cfb_test.go b/gost28147/cfb_test.go index 1e2fad0..58f4f73 100644 --- a/gost28147/cfb_test.go +++ b/gost28147/cfb_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/cipher.go b/gost28147/cipher.go index 1f918c6..47de2f8 100644 --- a/gost28147/cipher.go +++ b/gost28147/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/cipher_test.go b/gost28147/cipher_test.go index 9816835..f501463 100644 --- a/gost28147/cipher_test.go +++ b/gost28147/cipher_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/ctr.go b/gost28147/ctr.go index 6bb3dda..2102135 100644 --- a/gost28147/ctr.go +++ b/gost28147/ctr.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/ctr_test.go b/gost28147/ctr_test.go index 086b450..1998e65 100644 --- a/gost28147/ctr_test.go +++ b/gost28147/ctr_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/ecb.go b/gost28147/ecb.go index f14995e..7d7de78 100644 --- a/gost28147/ecb.go +++ b/gost28147/ecb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/ecb_test.go b/gost28147/ecb_test.go index fef8d39..3cf17fd 100644 --- a/gost28147/ecb_test.go +++ b/gost28147/ecb_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/mac.go b/gost28147/mac.go index 71e8039..18756c0 100644 --- a/gost28147/mac.go +++ b/gost28147/mac.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/mac_test.go b/gost28147/mac_test.go index ab194d2..e968ffc 100644 --- a/gost28147/mac_test.go +++ b/gost28147/mac_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost28147/sbox.go b/gost28147/sbox.go index 4e7d5ee..c8fb3f1 100644 --- a/gost28147/sbox.go +++ b/gost28147/sbox.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/2001_test.go b/gost3410/2001_test.go index 9dc242f..afe2d48 100644 --- a/gost3410/2001_test.go +++ b/gost3410/2001_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/2012_test.go b/gost3410/2012_test.go index fe32d70..a482d21 100644 --- a/gost3410/2012_test.go +++ b/gost3410/2012_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/curve.go b/gost3410/curve.go index 50d0071..c1b93ed 100644 --- a/gost3410/curve.go +++ b/gost3410/curve.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/edwards.go b/gost3410/edwards.go index 329ff25..7c3f3cc 100644 --- a/gost3410/edwards.go +++ b/gost3410/edwards.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/params.go b/gost3410/params.go index ce690d7..19b9f17 100644 --- a/gost3410/params.go +++ b/gost3410/params.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/private.go b/gost3410/private.go index be10c1f..89e0feb 100644 --- a/gost3410/private.go +++ b/gost3410/private.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/private_test.go b/gost3410/private_test.go index 6045c1e..90126b7 100644 --- a/gost3410/private_test.go +++ b/gost3410/private_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/public.go b/gost3410/public.go index a1bf539..a8669cf 100644 --- a/gost3410/public.go +++ b/gost3410/public.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/ukm.go b/gost3410/ukm.go index 772b178..368b88f 100644 --- a/gost3410/ukm.go +++ b/gost3410/ukm.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/utils.go b/gost3410/utils.go index ec737df..bab6e18 100644 --- a/gost3410/utils.go +++ b/gost3410/utils.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/vko.go b/gost3410/vko.go index c0afa99..1573296 100644 --- a/gost3410/vko.go +++ b/gost3410/vko.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/vko2001.go b/gost3410/vko2001.go index fd944b1..0bb8e3d 100644 --- a/gost3410/vko2001.go +++ b/gost3410/vko2001.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/vko2001_test.go b/gost3410/vko2001_test.go index a6585f3..2e5e91a 100644 --- a/gost3410/vko2001_test.go +++ b/gost3410/vko2001_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/vko2012.go b/gost3410/vko2012.go index 0875e19..bb1a9ed 100644 --- a/gost3410/vko2012.go +++ b/gost3410/vko2012.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3410/vko2012_test.go b/gost3410/vko2012_test.go index 3fbfd9d..1cf9696 100644 --- a/gost3410/vko2012_test.go +++ b/gost3410/vko2012_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/esptree.go b/gost34112012256/esptree.go index 6203b02..da979db 100644 --- a/gost34112012256/esptree.go +++ b/gost34112012256/esptree.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/esptree_test.go b/gost34112012256/esptree_test.go index 40e8589..f72f9cd 100644 --- a/gost34112012256/esptree_test.go +++ b/gost34112012256/esptree_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/hash.go b/gost34112012256/hash.go index bae30fe..caf43ba 100644 --- a/gost34112012256/hash.go +++ b/gost34112012256/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/hkdf_test.go b/gost34112012256/hkdf_test.go index ca4f012..0ae7489 100644 --- a/gost34112012256/hkdf_test.go +++ b/gost34112012256/hkdf_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/kdf.go b/gost34112012256/kdf.go index 8060f86..f1eeec2 100644 --- a/gost34112012256/kdf.go +++ b/gost34112012256/kdf.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/kdf_test.go b/gost34112012256/kdf_test.go index e30d758..ab97dff 100644 --- a/gost34112012256/kdf_test.go +++ b/gost34112012256/kdf_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/tlstree.go b/gost34112012256/tlstree.go index d68ecb6..ddec883 100644 --- a/gost34112012256/tlstree.go +++ b/gost34112012256/tlstree.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012256/tlstree_test.go b/gost34112012256/tlstree_test.go index 64c47af..e44ec23 100644 --- a/gost34112012256/tlstree_test.go +++ b/gost34112012256/tlstree_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost34112012512/hash.go b/gost34112012512/hash.go index b6f2729..9ee032e 100644 --- a/gost34112012512/hash.go +++ b/gost34112012512/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost341194/hash.go b/gost341194/hash.go index 0c3ae1a..ab96829 100644 --- a/gost341194/hash.go +++ b/gost341194/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost341194/hash_test.go b/gost341194/hash_test.go index 357a2b5..9a935c8 100644 --- a/gost341194/hash_test.go +++ b/gost341194/hash_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost341194/pbkdf2_test.go b/gost341194/pbkdf2_test.go index e8ad196..ee08fc7 100644 --- a/gost341194/pbkdf2_test.go +++ b/gost341194/pbkdf2_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3412128/cipher.go b/gost3412128/cipher.go index 4dacbfb..5fba3f9 100644 --- a/gost3412128/cipher.go +++ b/gost3412128/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3412128/cipher_test.go b/gost3412128/cipher_test.go index 52c60bc..9004d02 100644 --- a/gost3412128/cipher_test.go +++ b/gost3412128/cipher_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost341264/cipher.go b/gost341264/cipher.go index 5e93466..4d4d7a9 100644 --- a/gost341264/cipher.go +++ b/gost341264/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost341264/cipher_test.go b/gost341264/cipher_test.go index 9272770..25392f0 100644 --- a/gost341264/cipher_test.go +++ b/gost341264/cipher_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/gost3413/padding.go b/gost3413/padding.go index a5535ec..3534263 100644 --- a/gost3413/padding.go +++ b/gost3413/padding.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/internal/gost34112012/hash.go b/internal/gost34112012/hash.go index 9dfd407..4aed02f 100644 --- a/internal/gost34112012/hash.go +++ b/internal/gost34112012/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/internal/gost34112012/hash_test.go b/internal/gost34112012/hash_test.go index 1473d87..fa57200 100644 --- a/internal/gost34112012/hash_test.go +++ b/internal/gost34112012/hash_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/internal/gost34112012/hmac_test.go b/internal/gost34112012/hmac_test.go index d8e47af..6c6501b 100644 --- a/internal/gost34112012/hmac_test.go +++ b/internal/gost34112012/hmac_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/mgm/mode.go b/mgm/mode.go index 50abfd4..cbba435 100644 --- a/mgm/mode.go +++ b/mgm/mode.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/mgm/mode_test.go b/mgm/mode_test.go index e364a6c..9df177b 100644 --- a/mgm/mode_test.go +++ b/mgm/mode_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/mgm/mul128.go b/mgm/mul128.go index a72ad26..8119803 100644 --- a/mgm/mul128.go +++ b/mgm/mul128.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/mgm/mul128_test.go b/mgm/mul128_test.go index 8c52415..395f31a 100644 --- a/mgm/mul128_test.go +++ b/mgm/mul128_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/mgm/mul64.go b/mgm/mul64.go index 1e2de6e..11265e2 100644 --- a/mgm/mul64.go +++ b/mgm/mul64.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/mgm/mul64_test.go b/mgm/mul64_test.go index 4643d66..ce81900 100644 --- a/mgm/mul64_test.go +++ b/mgm/mul64_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/prfplus/gost.go b/prfplus/gost.go index 1e84493..5755586 100644 --- a/prfplus/gost.go +++ b/prfplus/gost.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/prfplus/gost_test.go b/prfplus/gost_test.go index 95677f4..1d6fd6f 100644 --- a/prfplus/gost_test.go +++ b/prfplus/gost_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/prfplus/plus.go b/prfplus/plus.go index 5d8d90c..3c90734 100644 --- a/prfplus/plus.go +++ b/prfplus/plus.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2023 Sergey Matveev +// Copyright (C) 2015-2024 Sergey Matveev // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/www.texi b/www.texi index 7542b6e..deb016d 100644 --- a/www.texi +++ b/www.texi @@ -3,7 +3,7 @@ @settitle GoGOST @copying -Copyright @copyright{} 2015-2023 @email{stargrave@@stargrave.org, Sergey Matveev} +Copyright @copyright{} 2015-2024 @email{stargrave@@stargrave.org, Sergey Matveev} @end copying @node Top -- 2.44.0