mirror of
https://github.com/containers/podman.git
synced 2025-12-05 04:40:47 +08:00
Also includes a small change to make us of https://github.com/containers/buildah/pull/5039 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
17 lines
417 B
Go
17 lines
417 B
Go
// Copyright 2017 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
|
|
// +build !amd64 purego !gc
|
|
|
|
package argon2
|
|
|
|
func processBlock(out, in1, in2 *block) {
|
|
processBlockGeneric(out, in1, in2, false)
|
|
}
|
|
|
|
func processBlockXOR(out, in1, in2 *block) {
|
|
processBlockGeneric(out, in1, in2, true)
|
|
}
|