From 6d9056bfe4a2d69469a1e70f3bf08f89b377b06e Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Tue, 5 Jan 2021 20:41:46 +0300 Subject: [PATCH] Raise copyright years --- README | 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/mul.go | 2 +- mgm/mul_test.go | 2 +- prfplus/gost.go | 2 +- prfplus/gost_test.go | 2 +- prfplus/plus.go | 2 +- www.texi | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/README b/README index 0f5fa1c..b51d993 100644 --- a/README +++ b/README @@ -67,4 +67,4 @@ https://lists.cypherpunks.ru/mailman/listinfo/gost mailing list. Announcements also go to this mailing list. Development Git source code repository currently is located here: -http://git.cypherpunks.ru/cgit.cgi/gogost.git/ +http://www.git.cypherpunks.ru/?p=gogost.git;a=summary diff --git a/cmd/streebog256/main.go b/cmd/streebog256/main.go index b45678a..9521415 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 5c51e6e..b4e80ea 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 8a962e3..b7226bf 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 8fe9934..b90bc38 100644 --- a/gost28147/cfb.go +++ b/gost28147/cfb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 4379815..77e7d67 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 6947dd9..d6bafbb 100644 --- a/gost28147/cipher.go +++ b/gost28147/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 70bd55d..f6e40fd 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 4706868..805c95d 100644 --- a/gost28147/ctr.go +++ b/gost28147/ctr.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 190f061..10291f9 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 8f0dc76..0645d7b 100644 --- a/gost28147/ecb.go +++ b/gost28147/ecb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 0ad2c3a..abe7d8c 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 9c35ab5..a48eb43 100644 --- a/gost28147/mac.go +++ b/gost28147/mac.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 9fc97a2..d2eda9a 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 c423607..8ffc3d1 100644 --- a/gost28147/sbox.go +++ b/gost28147/sbox.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 c5d8271..b3d1f23 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 fa868f2..e03eb4e 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 e1214d7..9ec14de 100644 --- a/gost3410/curve.go +++ b/gost3410/curve.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 eb4407c..43484e0 100644 --- a/gost3410/edwards.go +++ b/gost3410/edwards.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 6e71114..426a0ce 100644 --- a/gost3410/params.go +++ b/gost3410/params.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 689a961..4d73b07 100644 --- a/gost3410/private.go +++ b/gost3410/private.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 a9b051c..2e44bdd 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 e2e3814..79f00f4 100644 --- a/gost3410/public.go +++ b/gost3410/public.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 f9945a9..dfb94ea 100644 --- a/gost3410/ukm.go +++ b/gost3410/ukm.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 b903915..c85dfa9 100644 --- a/gost3410/utils.go +++ b/gost3410/utils.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 a6df7f4..b3036f5 100644 --- a/gost3410/vko.go +++ b/gost3410/vko.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 7ba7ba4..7472e29 100644 --- a/gost3410/vko2001.go +++ b/gost3410/vko2001.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 80e30ad..d956f1f 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 76fa0a4..08461ad 100644 --- a/gost3410/vko2012.go +++ b/gost3410/vko2012.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 33aabd9..bb3f611 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 204baca..4f708eb 100644 --- a/gost34112012256/esptree.go +++ b/gost34112012256/esptree.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 4583c1f..98649d0 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 d98b867..bb72521 100644 --- a/gost34112012256/hash.go +++ b/gost34112012256/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 bf60799..561ec20 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 d818fb2..2f9d1c3 100644 --- a/gost34112012256/kdf.go +++ b/gost34112012256/kdf.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 e6bd011..d8a1bdb 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 5f0a64d..2f308ae 100644 --- a/gost34112012256/tlstree.go +++ b/gost34112012256/tlstree.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 1c6a073..56c94b0 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 036f371..efab54d 100644 --- a/gost34112012512/hash.go +++ b/gost34112012512/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 e14a68d..492f4dc 100644 --- a/gost341194/hash.go +++ b/gost341194/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 f100793..20350ae 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 2e2d578..2ca6dc6 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 7e9604d..fd48d8b 100644 --- a/gost3412128/cipher.go +++ b/gost3412128/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 1929364..f574245 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 bdcc8d2..45e1176 100644 --- a/gost341264/cipher.go +++ b/gost341264/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 88425ce..05d2037 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 764c508..063c6cb 100644 --- a/gost3413/padding.go +++ b/gost3413/padding.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 f50b3c1..fa4fad6 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 5178dc4..3d87e5d 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 616bb78..0b2c0c7 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 e874dd3..1d0e19b 100644 --- a/mgm/mode.go +++ b/mgm/mode.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 d29120a..7d1d984 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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/mul.go b/mgm/mul.go index a3168c7..8fec466 100644 --- a/mgm/mul.go +++ b/mgm/mul.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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/mul_test.go b/mgm/mul_test.go index af6e396..b585799 100644 --- a/mgm/mul_test.go +++ b/mgm/mul_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 f688e38..0df0613 100644 --- a/prfplus/gost.go +++ b/prfplus/gost.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 6fbfa44..4b3f2d6 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-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 a352cdd..cc2c58c 100644 --- a/prfplus/plus.go +++ b/prfplus/plus.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2020 Sergey Matveev +// Copyright (C) 2015-2021 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 046d6dc..6a8314e 100644 --- a/www.texi +++ b/www.texi @@ -3,7 +3,7 @@ @settitle GoGOST @copying -Copyright @copyright{} 2015-2020 @email{stargrave@@stargrave.org, Sergey Matveev} +Copyright @copyright{} 2015-2021 @email{stargrave@@stargrave.org, Sergey Matveev} @end copying @node Top -- 2.44.0