]> Cypherpunks.ru repositories - gogost.git/blobdiff - src/cypherpunks.ru/gogost/gost3410/utils.go
Raise copyright years
[gogost.git] / src / cypherpunks.ru / gogost / gost3410 / utils.go
index e35760b4b8fd045bb12a14deff4e6db0f25ce0e7..e752004617139c505fbfa5a438f6bbef338df0bc 100644 (file)
@@ -1,5 +1,5 @@
 // GoGOST -- Pure Go GOST cryptographic functions library
-// Copyright (C) 2015-2016 Sergey Matveev <stargrave@stargrave.org>
+// Copyright (C) 2015-2018 Sergey Matveev <stargrave@stargrave.org>
 //
 // 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
@@ -21,9 +21,7 @@ import (
 )
 
 func bytes2big(d []byte) *big.Int {
-       n := big.NewInt(0)
-       n.SetBytes(d)
-       return n
+       return big.NewInt(0).SetBytes(d)
 }
 
 func reverse(d []byte) {