From a32e80313a4374abe764a12d85cb87043232ca4e Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sun, 3 Feb 2019 16:41:55 +0300 Subject: [PATCH] Raise copyright years --- src/cypherpunks.ru/gogost/cmd/streebog256/main.go | 2 +- src/cypherpunks.ru/gogost/cmd/streebog512/main.go | 2 +- src/cypherpunks.ru/gogost/gost28147/cbc_test.go | 2 +- src/cypherpunks.ru/gogost/gost28147/cfb.go | 2 +- src/cypherpunks.ru/gogost/gost28147/cfb_test.go | 2 +- src/cypherpunks.ru/gogost/gost28147/cipher.go | 2 +- src/cypherpunks.ru/gogost/gost28147/cipher_test.go | 2 +- src/cypherpunks.ru/gogost/gost28147/ctr.go | 2 +- src/cypherpunks.ru/gogost/gost28147/ctr_test.go | 2 +- src/cypherpunks.ru/gogost/gost28147/ecb.go | 2 +- src/cypherpunks.ru/gogost/gost28147/ecb_test.go | 2 +- src/cypherpunks.ru/gogost/gost28147/mac.go | 2 +- src/cypherpunks.ru/gogost/gost28147/mac_test.go | 2 +- src/cypherpunks.ru/gogost/gost28147/sbox.go | 2 +- src/cypherpunks.ru/gogost/gost3410/2001_test.go | 2 +- src/cypherpunks.ru/gogost/gost3410/2012_test.go | 2 +- src/cypherpunks.ru/gogost/gost3410/curve.go | 2 +- src/cypherpunks.ru/gogost/gost3410/params.go | 2 +- src/cypherpunks.ru/gogost/gost3410/private.go | 2 +- src/cypherpunks.ru/gogost/gost3410/public.go | 2 +- src/cypherpunks.ru/gogost/gost3410/ukm.go | 2 +- src/cypherpunks.ru/gogost/gost3410/utils.go | 2 +- src/cypherpunks.ru/gogost/gost3410/vko.go | 2 +- src/cypherpunks.ru/gogost/gost3410/vko2001.go | 2 +- src/cypherpunks.ru/gogost/gost3410/vko2001_test.go | 2 +- src/cypherpunks.ru/gogost/gost3410/vko2012.go | 2 +- src/cypherpunks.ru/gogost/gost3410/vko2012_test.go | 2 +- src/cypherpunks.ru/gogost/gost34112012256/hash.go | 2 +- src/cypherpunks.ru/gogost/gost34112012512/hash.go | 2 +- src/cypherpunks.ru/gogost/gost341194/hash.go | 2 +- src/cypherpunks.ru/gogost/gost341194/hash_test.go | 2 +- src/cypherpunks.ru/gogost/gost341194/pbkdf2_test.go | 2 +- src/cypherpunks.ru/gogost/gost3412/cipher.go | 2 +- src/cypherpunks.ru/gogost/gost3412/cipher_test.go | 2 +- src/cypherpunks.ru/gogost/gost3413/padding.go | 2 +- src/cypherpunks.ru/gogost/internal/gost34112012/hash.go | 2 +- src/cypherpunks.ru/gogost/internal/gost34112012/hash_test.go | 2 +- src/cypherpunks.ru/gogost/internal/gost34112012/hmac_test.go | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) diff --git a/src/cypherpunks.ru/gogost/cmd/streebog256/main.go b/src/cypherpunks.ru/gogost/cmd/streebog256/main.go index 3488ec6..ea5eaa5 100644 --- a/src/cypherpunks.ru/gogost/cmd/streebog256/main.go +++ b/src/cypherpunks.ru/gogost/cmd/streebog256/main.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/cmd/streebog512/main.go b/src/cypherpunks.ru/gogost/cmd/streebog512/main.go index 1825e45..58c0283 100644 --- a/src/cypherpunks.ru/gogost/cmd/streebog512/main.go +++ b/src/cypherpunks.ru/gogost/cmd/streebog512/main.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/cbc_test.go b/src/cypherpunks.ru/gogost/gost28147/cbc_test.go index 9fe99fc..3958677 100644 --- a/src/cypherpunks.ru/gogost/gost28147/cbc_test.go +++ b/src/cypherpunks.ru/gogost/gost28147/cbc_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/cfb.go b/src/cypherpunks.ru/gogost/gost28147/cfb.go index e7613e6..c94bdbb 100644 --- a/src/cypherpunks.ru/gogost/gost28147/cfb.go +++ b/src/cypherpunks.ru/gogost/gost28147/cfb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/cfb_test.go b/src/cypherpunks.ru/gogost/gost28147/cfb_test.go index 1a6964f..3b60a6f 100644 --- a/src/cypherpunks.ru/gogost/gost28147/cfb_test.go +++ b/src/cypherpunks.ru/gogost/gost28147/cfb_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/cipher.go b/src/cypherpunks.ru/gogost/gost28147/cipher.go index 8814f4f..68da82d 100644 --- a/src/cypherpunks.ru/gogost/gost28147/cipher.go +++ b/src/cypherpunks.ru/gogost/gost28147/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/cipher_test.go b/src/cypherpunks.ru/gogost/gost28147/cipher_test.go index a2d84ad..fcb0456 100644 --- a/src/cypherpunks.ru/gogost/gost28147/cipher_test.go +++ b/src/cypherpunks.ru/gogost/gost28147/cipher_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/ctr.go b/src/cypherpunks.ru/gogost/gost28147/ctr.go index 0086227..1008707 100644 --- a/src/cypherpunks.ru/gogost/gost28147/ctr.go +++ b/src/cypherpunks.ru/gogost/gost28147/ctr.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/ctr_test.go b/src/cypherpunks.ru/gogost/gost28147/ctr_test.go index 1881e5e..0395338 100644 --- a/src/cypherpunks.ru/gogost/gost28147/ctr_test.go +++ b/src/cypherpunks.ru/gogost/gost28147/ctr_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/ecb.go b/src/cypherpunks.ru/gogost/gost28147/ecb.go index 05589e7..cd81269 100644 --- a/src/cypherpunks.ru/gogost/gost28147/ecb.go +++ b/src/cypherpunks.ru/gogost/gost28147/ecb.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/ecb_test.go b/src/cypherpunks.ru/gogost/gost28147/ecb_test.go index 4202220..868d849 100644 --- a/src/cypherpunks.ru/gogost/gost28147/ecb_test.go +++ b/src/cypherpunks.ru/gogost/gost28147/ecb_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/mac.go b/src/cypherpunks.ru/gogost/gost28147/mac.go index 1037708..2849f15 100644 --- a/src/cypherpunks.ru/gogost/gost28147/mac.go +++ b/src/cypherpunks.ru/gogost/gost28147/mac.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/mac_test.go b/src/cypherpunks.ru/gogost/gost28147/mac_test.go index 5b88761..0aea54c 100644 --- a/src/cypherpunks.ru/gogost/gost28147/mac_test.go +++ b/src/cypherpunks.ru/gogost/gost28147/mac_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost28147/sbox.go b/src/cypherpunks.ru/gogost/gost28147/sbox.go index d9de9ec..392bfee 100644 --- a/src/cypherpunks.ru/gogost/gost28147/sbox.go +++ b/src/cypherpunks.ru/gogost/gost28147/sbox.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/2001_test.go b/src/cypherpunks.ru/gogost/gost3410/2001_test.go index 3d646ea..ba063df 100644 --- a/src/cypherpunks.ru/gogost/gost3410/2001_test.go +++ b/src/cypherpunks.ru/gogost/gost3410/2001_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/2012_test.go b/src/cypherpunks.ru/gogost/gost3410/2012_test.go index 71a2a0f..e724756 100644 --- a/src/cypherpunks.ru/gogost/gost3410/2012_test.go +++ b/src/cypherpunks.ru/gogost/gost3410/2012_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/curve.go b/src/cypherpunks.ru/gogost/gost3410/curve.go index 2b53c05..a8efdcc 100644 --- a/src/cypherpunks.ru/gogost/gost3410/curve.go +++ b/src/cypherpunks.ru/gogost/gost3410/curve.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/params.go b/src/cypherpunks.ru/gogost/gost3410/params.go index d647f7f..a8413f0 100644 --- a/src/cypherpunks.ru/gogost/gost3410/params.go +++ b/src/cypherpunks.ru/gogost/gost3410/params.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/private.go b/src/cypherpunks.ru/gogost/gost3410/private.go index 9e50107..2af8a4a 100644 --- a/src/cypherpunks.ru/gogost/gost3410/private.go +++ b/src/cypherpunks.ru/gogost/gost3410/private.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/public.go b/src/cypherpunks.ru/gogost/gost3410/public.go index 597f9f2..6af21af 100644 --- a/src/cypherpunks.ru/gogost/gost3410/public.go +++ b/src/cypherpunks.ru/gogost/gost3410/public.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/ukm.go b/src/cypherpunks.ru/gogost/gost3410/ukm.go index 81c9d2f..4eda4fc 100644 --- a/src/cypherpunks.ru/gogost/gost3410/ukm.go +++ b/src/cypherpunks.ru/gogost/gost3410/ukm.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/utils.go b/src/cypherpunks.ru/gogost/gost3410/utils.go index e752004..fd7be46 100644 --- a/src/cypherpunks.ru/gogost/gost3410/utils.go +++ b/src/cypherpunks.ru/gogost/gost3410/utils.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/vko.go b/src/cypherpunks.ru/gogost/gost3410/vko.go index dfb9610..2684121 100644 --- a/src/cypherpunks.ru/gogost/gost3410/vko.go +++ b/src/cypherpunks.ru/gogost/gost3410/vko.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/vko2001.go b/src/cypherpunks.ru/gogost/gost3410/vko2001.go index b22344c..258568d 100644 --- a/src/cypherpunks.ru/gogost/gost3410/vko2001.go +++ b/src/cypherpunks.ru/gogost/gost3410/vko2001.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/vko2001_test.go b/src/cypherpunks.ru/gogost/gost3410/vko2001_test.go index c590735..85745ba 100644 --- a/src/cypherpunks.ru/gogost/gost3410/vko2001_test.go +++ b/src/cypherpunks.ru/gogost/gost3410/vko2001_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/vko2012.go b/src/cypherpunks.ru/gogost/gost3410/vko2012.go index 17386d3..0de8507 100644 --- a/src/cypherpunks.ru/gogost/gost3410/vko2012.go +++ b/src/cypherpunks.ru/gogost/gost3410/vko2012.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3410/vko2012_test.go b/src/cypherpunks.ru/gogost/gost3410/vko2012_test.go index 5ffe952..2515ec8 100644 --- a/src/cypherpunks.ru/gogost/gost3410/vko2012_test.go +++ b/src/cypherpunks.ru/gogost/gost3410/vko2012_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost34112012256/hash.go b/src/cypherpunks.ru/gogost/gost34112012256/hash.go index 7a37ff2..bc0c662 100644 --- a/src/cypherpunks.ru/gogost/gost34112012256/hash.go +++ b/src/cypherpunks.ru/gogost/gost34112012256/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost34112012512/hash.go b/src/cypherpunks.ru/gogost/gost34112012512/hash.go index b4c86ba..419dedd 100644 --- a/src/cypherpunks.ru/gogost/gost34112012512/hash.go +++ b/src/cypherpunks.ru/gogost/gost34112012512/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost341194/hash.go b/src/cypherpunks.ru/gogost/gost341194/hash.go index 1d6c409..a65a3f5 100644 --- a/src/cypherpunks.ru/gogost/gost341194/hash.go +++ b/src/cypherpunks.ru/gogost/gost341194/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost341194/hash_test.go b/src/cypherpunks.ru/gogost/gost341194/hash_test.go index 2f79c8b..ea49387 100644 --- a/src/cypherpunks.ru/gogost/gost341194/hash_test.go +++ b/src/cypherpunks.ru/gogost/gost341194/hash_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost341194/pbkdf2_test.go b/src/cypherpunks.ru/gogost/gost341194/pbkdf2_test.go index d1d06a8..bd1a9a6 100644 --- a/src/cypherpunks.ru/gogost/gost341194/pbkdf2_test.go +++ b/src/cypherpunks.ru/gogost/gost341194/pbkdf2_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3412/cipher.go b/src/cypherpunks.ru/gogost/gost3412/cipher.go index aed76a0..0a3b55f 100644 --- a/src/cypherpunks.ru/gogost/gost3412/cipher.go +++ b/src/cypherpunks.ru/gogost/gost3412/cipher.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3412/cipher_test.go b/src/cypherpunks.ru/gogost/gost3412/cipher_test.go index ed54323..c65a4b4 100644 --- a/src/cypherpunks.ru/gogost/gost3412/cipher_test.go +++ b/src/cypherpunks.ru/gogost/gost3412/cipher_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/gost3413/padding.go b/src/cypherpunks.ru/gogost/gost3413/padding.go index f7125d1..c47a5c9 100644 --- a/src/cypherpunks.ru/gogost/gost3413/padding.go +++ b/src/cypherpunks.ru/gogost/gost3413/padding.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/internal/gost34112012/hash.go b/src/cypherpunks.ru/gogost/internal/gost34112012/hash.go index e43285b..c4d98da 100644 --- a/src/cypherpunks.ru/gogost/internal/gost34112012/hash.go +++ b/src/cypherpunks.ru/gogost/internal/gost34112012/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/internal/gost34112012/hash_test.go b/src/cypherpunks.ru/gogost/internal/gost34112012/hash_test.go index 1e056c6..45660cf 100644 --- a/src/cypherpunks.ru/gogost/internal/gost34112012/hash_test.go +++ b/src/cypherpunks.ru/gogost/internal/gost34112012/hash_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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/src/cypherpunks.ru/gogost/internal/gost34112012/hmac_test.go b/src/cypherpunks.ru/gogost/internal/gost34112012/hmac_test.go index d1eae2b..61b8740 100644 --- a/src/cypherpunks.ru/gogost/internal/gost34112012/hmac_test.go +++ b/src/cypherpunks.ru/gogost/internal/gost34112012/hmac_test.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2018 Sergey Matveev +// Copyright (C) 2015-2019 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 -- 2.44.0