Files
.gitea
cli
cmd
pkg
scripts
tests
vendor
coopcloud.tech
dario.cat
git.coopcloud.tech
github.com
go.opentelemetry.io
golang.org
x
crypto
argon2
blake2b
blake2b.go
blake2bAVX2_amd64.go
blake2bAVX2_amd64.s
blake2b_amd64.s
blake2b_generic.go
blake2b_ref.go
blake2x.go
register.go
blowfish
cast5
chacha20
curve25519
ed25519
hkdf
internal
pbkdf2
sha3
ssh
LICENSE
PATENTS
exp
net
sync
sys
term
text
time
google.golang.org
gopkg.in
gotest.tools
modules.txt
.dockerignore
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
AUTHORS.md
Dockerfile
LICENSE
Makefile
README.md
go.mod
go.sum
renovate.json
abra/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go
2024-08-04 11:06:58 +02:00

12 lines
328 B
Go

// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !amd64 || purego || !gc
package blake2b
func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) {
hashBlocksGeneric(h, c, flag, blocks)
}