salsa20_amd64.go 712 B

123456789101112131415161718
  1. // Copyright 2012 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. package salsa
  5. // This function is implemented in salsa2020_amd64.s.
  6. func salsa2020XORKeyStream(out, in *byte, n uint64, nonce, key *byte)
  7. // XORKeyStream crypts bytes from in to out using the given key and counters.
  8. // In and out may be the same slice but otherwise should not overlap. Counter
  9. // contains the raw salsa20 counter bytes (both nonce and block counter).
  10. func XORKeyStream(out, in []byte, counter *[16]byte, key *[32]byte) {
  11. if len(in) == 0 {
  12. return
  13. }
  14. salsa2020XORKeyStream(&out[0], &in[0], uint64(len(in)), &counter[0], &key[0])
  15. }