blamka_ref.go 417 B

12345678910111213141516
  1. // Copyright 2017 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build !amd64 || purego || !gc
  5. // +build !amd64 purego !gc
  6. package argon2
  7. func processBlock(out, in1, in2 *block) {
  8. processBlockGeneric(out, in1, in2, false)
  9. }
  10. func processBlockXOR(out, in1, in2 *block) {
  11. processBlockGeneric(out, in1, in2, true)
  12. }