X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=gost341194%2Fhash.go;h=0c3ae1a8583deb2ba97f8cdd9c78b7d38256356d;hb=285c03431192ff6ffbfa7470652fd545f06e0b00;hp=492f4dc0e82f8949ae1875a3bdd1340fc1c5097f;hpb=6d9056bfe4a2d69469a1e70f3bf08f89b377b06e;p=gogost.git diff --git a/gost341194/hash.go b/gost341194/hash.go index 492f4dc..0c3ae1a 100644 --- a/gost341194/hash.go +++ b/gost341194/hash.go @@ -1,5 +1,5 @@ // GoGOST -- Pure Go GOST cryptographic functions library -// Copyright (C) 2015-2021 Sergey Matveev +// Copyright (C) 2015-2023 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 @@ -131,7 +131,6 @@ func blockXor(dst, a, b *[BlockSize]byte) { for i := 0; i < BlockSize; i++ { dst[i] = a[i] ^ b[i] } - return } func (h *Hash) step(hin, m [BlockSize]byte) [BlockSize]byte {