]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost341194/hash.go
Use more modern Go version
[gogost.git] / gost341194 / hash.go
index 6d1a49beece73268d1d713843b5bdaf9ffaa8757..0c3ae1a8583deb2ba97f8cdd9c78b7d38256356d 100644 (file)
@@ -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 {