From c40d1e5634cf6d540d908a57423f4b504e39f186 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Tue, 17 Dec 2019 20:06:59 +0300 Subject: [PATCH] Raise copyright years --- VERSION | 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 | 4 ++-- 58 files changed, 59 insertions(+), 59 deletions(-) diff --git a/VERSION b/VERSION index 6aba2b2..fae6e3d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2.0 +4.2.1 diff --git a/cmd/streebog256/main.go b/cmd/streebog256/main.go index 9722168..efaae81 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 41d0c6a..d705064 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 f861ec4..8a962e3 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 dfcd8f7..8fe9934 100644 --- a/gost28147/cfb.go +++ b/gost28147/cfb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 5647663..4379815 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 e926faa..6947dd9 100644 --- a/gost28147/cipher.go +++ b/gost28147/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 21e5447..70bd55d 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 45119fe..4706868 100644 --- a/gost28147/ctr.go +++ b/gost28147/ctr.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 2780642..190f061 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 0c47ec3..8f0dc76 100644 --- a/gost28147/ecb.go +++ b/gost28147/ecb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 f99d2c5..0ad2c3a 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 b49bc7d..9c35ab5 100644 --- a/gost28147/mac.go +++ b/gost28147/mac.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 c91db04..9fc97a2 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 d7a7569..c423607 100644 --- a/gost28147/sbox.go +++ b/gost28147/sbox.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 90da48c..e330d4e 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 4a31b7b..4ee6b6f 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 b5fa052..696beab 100644 --- a/gost3410/curve.go +++ b/gost3410/curve.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 10b1c6a..eb4407c 100644 --- a/gost3410/edwards.go +++ b/gost3410/edwards.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 5c66c4d..196ff2f 100644 --- a/gost3410/params.go +++ b/gost3410/params.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 231f45e..ae54424 100644 --- a/gost3410/private.go +++ b/gost3410/private.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 7b8e75a..f20d325 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 de2d858..675431c 100644 --- a/gost3410/public.go +++ b/gost3410/public.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 975477d..f9945a9 100644 --- a/gost3410/ukm.go +++ b/gost3410/ukm.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 150dd05..2f22d3b 100644 --- a/gost3410/utils.go +++ b/gost3410/utils.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 bb10f94..1ac5ea3 100644 --- a/gost3410/vko.go +++ b/gost3410/vko.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 c950280..02f976f 100644 --- a/gost3410/vko2001.go +++ b/gost3410/vko2001.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 2993161..41fa4a4 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 7a30b4e..01f3e85 100644 --- a/gost3410/vko2012.go +++ b/gost3410/vko2012.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 4fcffd8..3d23b95 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 dceaeb7..204baca 100644 --- a/gost34112012256/esptree.go +++ b/gost34112012256/esptree.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 a5c50e6..4583c1f 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 f1f7e9b..7f68188 100644 --- a/gost34112012256/hash.go +++ b/gost34112012256/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 bfdc71c..bf60799 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 eab8edc..43c08ae 100644 --- a/gost34112012256/kdf.go +++ b/gost34112012256/kdf.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 750d400..e6bd011 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 1c81359..5f0a64d 100644 --- a/gost34112012256/tlstree.go +++ b/gost34112012256/tlstree.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 3c04583..1c6a073 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 06e1a86..ec094a9 100644 --- a/gost34112012512/hash.go +++ b/gost34112012512/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 e386ddd..2848493 100644 --- a/gost341194/hash.go +++ b/gost341194/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 de5d988..be70a79 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 20c5c13..2f02d66 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 e375953..7e9604d 100644 --- a/gost3412128/cipher.go +++ b/gost3412128/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 26f404b..1929364 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 f308080..d9ab457 100644 --- a/gost341264/cipher.go +++ b/gost341264/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 4fff111..88425ce 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 f094141..764c508 100644 --- a/gost3413/padding.go +++ b/gost3413/padding.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 2c1b4b9..f50b3c1 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 e305f53..5178dc4 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 d8562b6..616bb78 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 7857968..e874dd3 100644 --- a/mgm/mode.go +++ b/mgm/mode.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 38d6ee9..6eaf9d8 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 7e0daae..ab1948b 100644 --- a/mgm/mul.go +++ b/mgm/mul.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 9a08946..1819cd7 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 659b5b4..86f4cac 100644 --- a/prfplus/gost.go +++ b/prfplus/gost.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 300d76c..6fbfa44 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-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 84ce70c..a352cdd 100644 --- a/prfplus/plus.go +++ b/prfplus/plus.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2019 Sergey Matveev +// Copyright (C) 2015-2020 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 8ab786a..f532524 100644 --- a/www.texi +++ b/www.texi @@ -2,10 +2,10 @@ @documentencoding UTF-8 @settitle GoGOST -@set VERSION 4.2.0 +@set VERSION 4.2.1 @copying -Copyright @copyright{} 2015-2019 @email{stargrave@@stargrave.org, Sergey Matveev} +Copyright @copyright{} 2015-2020 @email{stargrave@@stargrave.org, Sergey Matveev} @end copying @node Top -- 2.44.0